@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1233 -925
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/actions/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +453 -50
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +296 -30
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +970 -910
- 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
|
@@ -3376,6 +3376,20 @@ export declare interface ActionsApiResolveLlmEndpointsRequest {
|
|
|
3376
3376
|
readonly workspaceId: string;
|
|
3377
3377
|
}
|
|
3378
3378
|
|
|
3379
|
+
/**
|
|
3380
|
+
* Request parameters for resolveLlmProviders operation in ActionsApi.
|
|
3381
|
+
* @export
|
|
3382
|
+
* @interface ActionsApiResolveLlmProvidersRequest
|
|
3383
|
+
*/
|
|
3384
|
+
declare interface ActionsApiResolveLlmProvidersRequest {
|
|
3385
|
+
/**
|
|
3386
|
+
* Workspace identifier
|
|
3387
|
+
* @type {string}
|
|
3388
|
+
* @memberof ActionsApiResolveLlmProviders
|
|
3389
|
+
*/
|
|
3390
|
+
readonly workspaceId: string;
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3379
3393
|
/**
|
|
3380
3394
|
* Request parameters for resolveRequestedEntitlements operation in ActionsApi.
|
|
3381
3395
|
* @export
|
|
@@ -3431,29 +3445,49 @@ export declare interface ActionsApiRetrieveExecutionMetadataRequest {
|
|
|
3431
3445
|
}
|
|
3432
3446
|
|
|
3433
3447
|
/**
|
|
3434
|
-
* Request parameters for
|
|
3448
|
+
* Request parameters for retrieveResultBinary operation in ActionsApi.
|
|
3435
3449
|
* @export
|
|
3436
|
-
* @interface
|
|
3450
|
+
* @interface ActionsApiRetrieveResultBinaryRequest
|
|
3437
3451
|
*/
|
|
3438
|
-
|
|
3452
|
+
declare interface ActionsApiRetrieveResultBinaryRequest {
|
|
3439
3453
|
/**
|
|
3440
3454
|
* Workspace identifier
|
|
3441
3455
|
* @type {string}
|
|
3442
|
-
* @memberof
|
|
3456
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3443
3457
|
*/
|
|
3444
3458
|
readonly workspaceId: string;
|
|
3445
3459
|
/**
|
|
3446
3460
|
* Result ID
|
|
3447
3461
|
* @type {string}
|
|
3448
|
-
* @memberof
|
|
3462
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3449
3463
|
*/
|
|
3450
3464
|
readonly resultId: string;
|
|
3451
3465
|
/**
|
|
3452
3466
|
*
|
|
3453
3467
|
* @type {string}
|
|
3454
|
-
* @memberof
|
|
3468
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3455
3469
|
*/
|
|
3456
3470
|
readonly xGDCCANCELTOKEN?: string;
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
/**
|
|
3474
|
+
* Request parameters for retrieveResult operation in ActionsApi.
|
|
3475
|
+
* @export
|
|
3476
|
+
* @interface ActionsApiRetrieveResultRequest
|
|
3477
|
+
*/
|
|
3478
|
+
export declare interface ActionsApiRetrieveResultRequest {
|
|
3479
|
+
/**
|
|
3480
|
+
* Workspace identifier
|
|
3481
|
+
* @type {string}
|
|
3482
|
+
* @memberof ActionsApiRetrieveResult
|
|
3483
|
+
*/
|
|
3484
|
+
readonly workspaceId: string;
|
|
3485
|
+
/**
|
|
3486
|
+
* Result ID
|
|
3487
|
+
* @type {string}
|
|
3488
|
+
* @memberof ActionsApiRetrieveResult
|
|
3489
|
+
*/
|
|
3490
|
+
readonly resultId: string;
|
|
3457
3491
|
/**
|
|
3458
3492
|
* Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
3459
3493
|
* @type {Array<number>}
|
|
@@ -3472,6 +3506,12 @@ export declare interface ActionsApiRetrieveResultRequest {
|
|
|
3472
3506
|
* @memberof ActionsApiRetrieveResult
|
|
3473
3507
|
*/
|
|
3474
3508
|
readonly excludedTotalDimensions?: Array<string>;
|
|
3509
|
+
/**
|
|
3510
|
+
*
|
|
3511
|
+
* @type {string}
|
|
3512
|
+
* @memberof ActionsApiRetrieveResult
|
|
3513
|
+
*/
|
|
3514
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
3475
3515
|
}
|
|
3476
3516
|
|
|
3477
3517
|
/**
|
|
@@ -5550,14 +5590,24 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5550
5590
|
*/
|
|
5551
5591
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
5552
5592
|
/**
|
|
5553
|
-
*
|
|
5593
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
5554
5594
|
* @summary Get Active LLM Endpoints for this workspace
|
|
5555
5595
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5556
5596
|
* @param {*} [options] Override http request option.
|
|
5597
|
+
* @deprecated
|
|
5557
5598
|
* @throws {RequiredError}
|
|
5558
5599
|
* @memberof ActionsApi
|
|
5559
5600
|
*/
|
|
5560
5601
|
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
5602
|
+
/**
|
|
5603
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
5604
|
+
* @summary Get Active LLM configuration for this workspace
|
|
5605
|
+
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
5606
|
+
* @param {*} [options] Override http request option.
|
|
5607
|
+
* @throws {RequiredError}
|
|
5608
|
+
* @memberof ActionsApi
|
|
5609
|
+
*/
|
|
5610
|
+
resolveLlmProviders(requestParameters: ActionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
5561
5611
|
/**
|
|
5562
5612
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
5563
5613
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -5568,7 +5618,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5568
5618
|
*/
|
|
5569
5619
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
5570
5620
|
/**
|
|
5571
|
-
* Gets a single execution result.
|
|
5621
|
+
* Gets a single execution result.
|
|
5572
5622
|
* @summary Get a single execution result
|
|
5573
5623
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
5574
5624
|
* @param {*} [options] Override http request option.
|
|
@@ -5576,6 +5626,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5576
5626
|
* @memberof ActionsApi
|
|
5577
5627
|
*/
|
|
5578
5628
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
5629
|
+
/**
|
|
5630
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
5631
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
5632
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
5633
|
+
* @param {*} [options] Override http request option.
|
|
5634
|
+
* @throws {RequiredError}
|
|
5635
|
+
* @memberof ActionsApi
|
|
5636
|
+
*/
|
|
5637
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
5579
5638
|
/**
|
|
5580
5639
|
*
|
|
5581
5640
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -5638,19 +5697,21 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5638
5697
|
*/
|
|
5639
5698
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
5640
5699
|
/**
|
|
5641
|
-
*
|
|
5700
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
5642
5701
|
* @summary Validate LLM Endpoint
|
|
5643
5702
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5644
5703
|
* @param {*} [options] Override http request option.
|
|
5704
|
+
* @deprecated
|
|
5645
5705
|
* @throws {RequiredError}
|
|
5646
5706
|
* @memberof ActionsApi
|
|
5647
5707
|
*/
|
|
5648
5708
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5649
5709
|
/**
|
|
5650
|
-
*
|
|
5710
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
5651
5711
|
* @summary Validate LLM Endpoint By Id
|
|
5652
5712
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5653
5713
|
* @param {*} [options] Override http request option.
|
|
5714
|
+
* @deprecated
|
|
5654
5715
|
* @throws {RequiredError}
|
|
5655
5716
|
* @memberof ActionsApi
|
|
5656
5717
|
*/
|
|
@@ -6043,14 +6104,24 @@ export declare interface AfmActionsApiInterface {
|
|
|
6043
6104
|
*/
|
|
6044
6105
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
6045
6106
|
/**
|
|
6046
|
-
*
|
|
6107
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6047
6108
|
* @summary Get Active LLM Endpoints for this workspace
|
|
6048
6109
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6049
6110
|
* @param {*} [options] Override http request option.
|
|
6111
|
+
* @deprecated
|
|
6050
6112
|
* @throws {RequiredError}
|
|
6051
6113
|
* @memberof ActionsApiInterface
|
|
6052
6114
|
*/
|
|
6053
6115
|
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
6116
|
+
/**
|
|
6117
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
6118
|
+
* @summary Get Active LLM configuration for this workspace
|
|
6119
|
+
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
6120
|
+
* @param {*} [options] Override http request option.
|
|
6121
|
+
* @throws {RequiredError}
|
|
6122
|
+
* @memberof ActionsApiInterface
|
|
6123
|
+
*/
|
|
6124
|
+
resolveLlmProviders(requestParameters: ActionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
6054
6125
|
/**
|
|
6055
6126
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
6056
6127
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -6061,7 +6132,7 @@ export declare interface AfmActionsApiInterface {
|
|
|
6061
6132
|
*/
|
|
6062
6133
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
6063
6134
|
/**
|
|
6064
|
-
* Gets a single execution result.
|
|
6135
|
+
* Gets a single execution result.
|
|
6065
6136
|
* @summary Get a single execution result
|
|
6066
6137
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
6067
6138
|
* @param {*} [options] Override http request option.
|
|
@@ -6069,6 +6140,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6069
6140
|
* @memberof ActionsApiInterface
|
|
6070
6141
|
*/
|
|
6071
6142
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
6143
|
+
/**
|
|
6144
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
6145
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
6146
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
6147
|
+
* @param {*} [options] Override http request option.
|
|
6148
|
+
* @throws {RequiredError}
|
|
6149
|
+
* @memberof ActionsApiInterface
|
|
6150
|
+
*/
|
|
6151
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6072
6152
|
/**
|
|
6073
6153
|
*
|
|
6074
6154
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -6131,19 +6211,21 @@ export declare interface AfmActionsApiInterface {
|
|
|
6131
6211
|
*/
|
|
6132
6212
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
6133
6213
|
/**
|
|
6134
|
-
*
|
|
6214
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
6135
6215
|
* @summary Validate LLM Endpoint
|
|
6136
6216
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6137
6217
|
* @param {*} [options] Override http request option.
|
|
6218
|
+
* @deprecated
|
|
6138
6219
|
* @throws {RequiredError}
|
|
6139
6220
|
* @memberof ActionsApiInterface
|
|
6140
6221
|
*/
|
|
6141
6222
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6142
6223
|
/**
|
|
6143
|
-
*
|
|
6224
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
6144
6225
|
* @summary Validate LLM Endpoint By Id
|
|
6145
6226
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6146
6227
|
* @param {*} [options] Override http request option.
|
|
6228
|
+
* @deprecated
|
|
6147
6229
|
* @throws {RequiredError}
|
|
6148
6230
|
* @memberof ActionsApiInterface
|
|
6149
6231
|
*/
|
|
@@ -17531,6 +17613,10 @@ export declare interface ChatResult {
|
|
|
17531
17613
|
*/
|
|
17532
17614
|
'chatHistoryInteractionId'?: string;
|
|
17533
17615
|
'reasoning'?: Reasoning;
|
|
17616
|
+
/**
|
|
17617
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
17618
|
+
*/
|
|
17619
|
+
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
17534
17620
|
}
|
|
17535
17621
|
|
|
17536
17622
|
/**
|
|
@@ -20017,6 +20103,25 @@ export declare interface DashboardAttributeFilterAttributeFilter {
|
|
|
20017
20103
|
|
|
20018
20104
|
export declare type DashboardAttributeFilterAttributeFilterSelectionModeEnum = 'single' | 'multi';
|
|
20019
20105
|
|
|
20106
|
+
/**
|
|
20107
|
+
* Dashboard the user is currently viewing.
|
|
20108
|
+
*/
|
|
20109
|
+
declare interface DashboardContext {
|
|
20110
|
+
/**
|
|
20111
|
+
* Dashboard object ID.
|
|
20112
|
+
*/
|
|
20113
|
+
'id': string;
|
|
20114
|
+
/**
|
|
20115
|
+
* Widgets currently visible on the dashboard.
|
|
20116
|
+
*/
|
|
20117
|
+
'widgets': Array<DashboardContextWidgetsInner>;
|
|
20118
|
+
}
|
|
20119
|
+
|
|
20120
|
+
/**
|
|
20121
|
+
* @type DashboardContextWidgetsInner
|
|
20122
|
+
*/
|
|
20123
|
+
declare type DashboardContextWidgetsInner = InsightWidgetDescriptor | RichTextWidgetDescriptor | VisualizationSwitcherWidgetDescriptor;
|
|
20124
|
+
|
|
20020
20125
|
export declare interface DashboardDateFilter {
|
|
20021
20126
|
'dateFilter': DashboardDateFilterDateFilter;
|
|
20022
20127
|
}
|
|
@@ -27581,10 +27686,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
27581
27686
|
*/
|
|
27582
27687
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
27583
27688
|
/**
|
|
27584
|
-
*
|
|
27689
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
27585
27690
|
* @summary Post LLM endpoint entities
|
|
27586
27691
|
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
27587
27692
|
* @param {*} [options] Override http request option.
|
|
27693
|
+
* @deprecated
|
|
27588
27694
|
* @throws {RequiredError}
|
|
27589
27695
|
* @memberof EntitiesApi
|
|
27590
27696
|
*/
|
|
@@ -27876,9 +27982,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
27876
27982
|
*/
|
|
27877
27983
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
27878
27984
|
/**
|
|
27879
|
-
*
|
|
27985
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
27986
|
+
* @summary Delete LLM endpoint entity
|
|
27880
27987
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
27881
27988
|
* @param {*} [options] Override http request option.
|
|
27989
|
+
* @deprecated
|
|
27882
27990
|
* @throws {RequiredError}
|
|
27883
27991
|
* @memberof EntitiesApi
|
|
27884
27992
|
*/
|
|
@@ -28241,10 +28349,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
28241
28349
|
*/
|
|
28242
28350
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
28243
28351
|
/**
|
|
28244
|
-
*
|
|
28352
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
28245
28353
|
* @summary Get all LLM endpoint entities
|
|
28246
28354
|
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
28247
28355
|
* @param {*} [options] Override http request option.
|
|
28356
|
+
* @deprecated
|
|
28248
28357
|
* @throws {RequiredError}
|
|
28249
28358
|
* @memberof EntitiesApi
|
|
28250
28359
|
*/
|
|
@@ -28642,10 +28751,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
28642
28751
|
*/
|
|
28643
28752
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
28644
28753
|
/**
|
|
28645
|
-
*
|
|
28754
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
28646
28755
|
* @summary Get LLM endpoint entity
|
|
28647
28756
|
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
28648
28757
|
* @param {*} [options] Override http request option.
|
|
28758
|
+
* @deprecated
|
|
28649
28759
|
* @throws {RequiredError}
|
|
28650
28760
|
* @memberof EntitiesApi
|
|
28651
28761
|
*/
|
|
@@ -29008,10 +29118,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
29008
29118
|
*/
|
|
29009
29119
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
29010
29120
|
/**
|
|
29011
|
-
*
|
|
29121
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29012
29122
|
* @summary Patch LLM endpoint entity
|
|
29013
29123
|
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
29014
29124
|
* @param {*} [options] Override http request option.
|
|
29125
|
+
* @deprecated
|
|
29015
29126
|
* @throws {RequiredError}
|
|
29016
29127
|
* @memberof EntitiesApi
|
|
29017
29128
|
*/
|
|
@@ -29501,10 +29612,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
29501
29612
|
*/
|
|
29502
29613
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
29503
29614
|
/**
|
|
29504
|
-
*
|
|
29615
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29505
29616
|
* @summary PUT LLM endpoint entity
|
|
29506
29617
|
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
29507
29618
|
* @param {*} [options] Override http request option.
|
|
29619
|
+
* @deprecated
|
|
29508
29620
|
* @throws {RequiredError}
|
|
29509
29621
|
* @memberof EntitiesApi
|
|
29510
29622
|
*/
|
|
@@ -29858,7 +29970,7 @@ export declare function EntitiesApi_CreateEntityJwks(axios: AxiosInstance, baseP
|
|
|
29858
29970
|
export declare function EntitiesApi_CreateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
29859
29971
|
|
|
29860
29972
|
/**
|
|
29861
|
-
*
|
|
29973
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29862
29974
|
* @summary Post LLM endpoint entities
|
|
29863
29975
|
* @param {AxiosInstance} axios Axios instance.
|
|
29864
29976
|
* @param {string} basePath Base path.
|
|
@@ -30252,7 +30364,8 @@ export declare function EntitiesApi_DeleteEntityJwks(axios: AxiosInstance, baseP
|
|
|
30252
30364
|
export declare function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
30253
30365
|
|
|
30254
30366
|
/**
|
|
30255
|
-
*
|
|
30367
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
30368
|
+
* @summary Delete LLM endpoint entity
|
|
30256
30369
|
* @param {AxiosInstance} axios Axios instance.
|
|
30257
30370
|
* @param {string} basePath Base path.
|
|
30258
30371
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -30740,7 +30853,7 @@ export declare function EntitiesApi_GetAllEntitiesKnowledgeRecommendations(axios
|
|
|
30740
30853
|
export declare function EntitiesApi_GetAllEntitiesLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutList>;
|
|
30741
30854
|
|
|
30742
30855
|
/**
|
|
30743
|
-
*
|
|
30856
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
30744
30857
|
* @summary Get all LLM endpoint entities
|
|
30745
30858
|
* @param {AxiosInstance} axios Axios instance.
|
|
30746
30859
|
* @param {string} basePath Base path.
|
|
@@ -31276,7 +31389,7 @@ export declare function EntitiesApi_GetEntityKnowledgeRecommendations(axios: Axi
|
|
|
31276
31389
|
export declare function EntitiesApi_GetEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
31277
31390
|
|
|
31278
31391
|
/**
|
|
31279
|
-
*
|
|
31392
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
31280
31393
|
* @summary Get LLM endpoint entity
|
|
31281
31394
|
* @param {AxiosInstance} axios Axios instance.
|
|
31282
31395
|
* @param {string} basePath Base path.
|
|
@@ -31765,7 +31878,7 @@ export declare function EntitiesApi_PatchEntityKnowledgeRecommendations(axios: A
|
|
|
31765
31878
|
export declare function EntitiesApi_PatchEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
31766
31879
|
|
|
31767
31880
|
/**
|
|
31768
|
-
*
|
|
31881
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
31769
31882
|
* @summary Patch LLM endpoint entity
|
|
31770
31883
|
* @param {AxiosInstance} axios Axios instance.
|
|
31771
31884
|
* @param {string} basePath Base path.
|
|
@@ -32423,7 +32536,7 @@ export declare function EntitiesApi_UpdateEntityJwks(axios: AxiosInstance, baseP
|
|
|
32423
32536
|
export declare function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
32424
32537
|
|
|
32425
32538
|
/**
|
|
32426
|
-
*
|
|
32539
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
32427
32540
|
* @summary PUT LLM endpoint entity
|
|
32428
32541
|
* @param {AxiosInstance} axios Axios instance.
|
|
32429
32542
|
* @param {string} basePath Base path.
|
|
@@ -32822,7 +32935,7 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityJwks(jsonApiJwk
|
|
|
32822
32935
|
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
32936
|
|
|
32824
32937
|
/**
|
|
32825
|
-
*
|
|
32938
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
32826
32939
|
* @summary Post LLM endpoint entities
|
|
32827
32940
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
32828
32941
|
* @param {*} [options] Override http request option.
|
|
@@ -33202,7 +33315,8 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id: string
|
|
|
33202
33315
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
33203
33316
|
|
|
33204
33317
|
/**
|
|
33205
|
-
*
|
|
33318
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
33319
|
+
* @summary Delete LLM endpoint entity
|
|
33206
33320
|
* @param {string} id
|
|
33207
33321
|
* @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
33322
|
* @param {*} [options] Override http request option.
|
|
@@ -33789,7 +33903,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesKnowledgeReco
|
|
|
33789
33903
|
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
33904
|
|
|
33791
33905
|
/**
|
|
33792
|
-
*
|
|
33906
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
33793
33907
|
* @summary Get all LLM endpoint entities
|
|
33794
33908
|
* @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
33909
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -34418,7 +34532,7 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityKnowledgeRecommend
|
|
|
34418
34532
|
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
34533
|
|
|
34420
34534
|
/**
|
|
34421
|
-
*
|
|
34535
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
34422
34536
|
* @summary Get LLM endpoint entity
|
|
34423
34537
|
* @param {string} id
|
|
34424
34538
|
* @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 +35059,7 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityKnowledgeRecomme
|
|
|
34945
35059
|
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
35060
|
|
|
34947
35061
|
/**
|
|
34948
|
-
*
|
|
35062
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
34949
35063
|
* @summary Patch LLM endpoint entity
|
|
34950
35064
|
* @param {string} id
|
|
34951
35065
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -35659,7 +35773,7 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityJwks(id: string
|
|
|
35659
35773
|
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
35774
|
|
|
35661
35775
|
/**
|
|
35662
|
-
*
|
|
35776
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
35663
35777
|
* @summary PUT LLM endpoint entity
|
|
35664
35778
|
* @param {string} id
|
|
35665
35779
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -41182,10 +41296,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41182
41296
|
*/
|
|
41183
41297
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
41184
41298
|
/**
|
|
41185
|
-
*
|
|
41299
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41186
41300
|
* @summary Post LLM endpoint entities
|
|
41187
41301
|
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
41188
41302
|
* @param {*} [options] Override http request option.
|
|
41303
|
+
* @deprecated
|
|
41189
41304
|
* @throws {RequiredError}
|
|
41190
41305
|
* @memberof EntitiesApiInterface
|
|
41191
41306
|
*/
|
|
@@ -41477,9 +41592,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41477
41592
|
*/
|
|
41478
41593
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
41479
41594
|
/**
|
|
41480
|
-
*
|
|
41595
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41596
|
+
* @summary Delete LLM endpoint entity
|
|
41481
41597
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
41482
41598
|
* @param {*} [options] Override http request option.
|
|
41599
|
+
* @deprecated
|
|
41483
41600
|
* @throws {RequiredError}
|
|
41484
41601
|
* @memberof EntitiesApiInterface
|
|
41485
41602
|
*/
|
|
@@ -41842,10 +41959,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41842
41959
|
*/
|
|
41843
41960
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
41844
41961
|
/**
|
|
41845
|
-
*
|
|
41962
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41846
41963
|
* @summary Get all LLM endpoint entities
|
|
41847
41964
|
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
41848
41965
|
* @param {*} [options] Override http request option.
|
|
41966
|
+
* @deprecated
|
|
41849
41967
|
* @throws {RequiredError}
|
|
41850
41968
|
* @memberof EntitiesApiInterface
|
|
41851
41969
|
*/
|
|
@@ -42243,10 +42361,11 @@ export declare interface EntitiesApiInterface {
|
|
|
42243
42361
|
*/
|
|
42244
42362
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
42245
42363
|
/**
|
|
42246
|
-
*
|
|
42364
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
42247
42365
|
* @summary Get LLM endpoint entity
|
|
42248
42366
|
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
42249
42367
|
* @param {*} [options] Override http request option.
|
|
42368
|
+
* @deprecated
|
|
42250
42369
|
* @throws {RequiredError}
|
|
42251
42370
|
* @memberof EntitiesApiInterface
|
|
42252
42371
|
*/
|
|
@@ -42609,10 +42728,11 @@ export declare interface EntitiesApiInterface {
|
|
|
42609
42728
|
*/
|
|
42610
42729
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
42611
42730
|
/**
|
|
42612
|
-
*
|
|
42731
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
42613
42732
|
* @summary Patch LLM endpoint entity
|
|
42614
42733
|
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
42615
42734
|
* @param {*} [options] Override http request option.
|
|
42735
|
+
* @deprecated
|
|
42616
42736
|
* @throws {RequiredError}
|
|
42617
42737
|
* @memberof EntitiesApiInterface
|
|
42618
42738
|
*/
|
|
@@ -43102,10 +43222,11 @@ export declare interface EntitiesApiInterface {
|
|
|
43102
43222
|
*/
|
|
43103
43223
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
43104
43224
|
/**
|
|
43105
|
-
*
|
|
43225
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
43106
43226
|
* @summary PUT LLM endpoint entity
|
|
43107
43227
|
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
43108
43228
|
* @param {*} [options] Override http request option.
|
|
43229
|
+
* @deprecated
|
|
43109
43230
|
* @throws {RequiredError}
|
|
43110
43231
|
* @memberof EntitiesApiInterface
|
|
43111
43232
|
*/
|
|
@@ -55274,6 +55395,28 @@ export declare interface InPlatform {
|
|
|
55274
55395
|
|
|
55275
55396
|
export declare type InPlatformTypeEnum = 'IN_PLATFORM';
|
|
55276
55397
|
|
|
55398
|
+
/**
|
|
55399
|
+
* Insight widget displaying a visualization.
|
|
55400
|
+
*/
|
|
55401
|
+
declare interface InsightWidgetDescriptor extends WidgetDescriptor {
|
|
55402
|
+
/**
|
|
55403
|
+
* Widget object ID.
|
|
55404
|
+
*/
|
|
55405
|
+
'widgetId': string;
|
|
55406
|
+
/**
|
|
55407
|
+
* Widget title as displayed on the dashboard.
|
|
55408
|
+
*/
|
|
55409
|
+
'title': string;
|
|
55410
|
+
/**
|
|
55411
|
+
* Signed result ID for this widget\'s cached execution result.
|
|
55412
|
+
*/
|
|
55413
|
+
'resultId'?: string;
|
|
55414
|
+
/**
|
|
55415
|
+
* Visualization object ID referenced by this insight widget.
|
|
55416
|
+
*/
|
|
55417
|
+
'visualizationId': string;
|
|
55418
|
+
}
|
|
55419
|
+
|
|
55277
55420
|
/**
|
|
55278
55421
|
* Settings for intro slide.
|
|
55279
55422
|
*/
|
|
@@ -56310,7 +56453,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
56310
56453
|
* API identifier of an object
|
|
56311
56454
|
*/
|
|
56312
56455
|
'id': string;
|
|
56313
|
-
'meta'?:
|
|
56456
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56314
56457
|
'attributes': JsonApiAggregatedFactOutAttributes;
|
|
56315
56458
|
'relationships'?: JsonApiAggregatedFactOutRelationships;
|
|
56316
56459
|
}
|
|
@@ -56350,7 +56493,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
56350
56493
|
export declare interface JsonApiAggregatedFactOutList {
|
|
56351
56494
|
'data': Array<JsonApiAggregatedFactOutWithLinks>;
|
|
56352
56495
|
'links'?: ListLinks;
|
|
56353
|
-
'meta'?:
|
|
56496
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56354
56497
|
/**
|
|
56355
56498
|
* Included resources
|
|
56356
56499
|
*/
|
|
@@ -56358,7 +56501,7 @@ export declare interface JsonApiAggregatedFactOutList {
|
|
|
56358
56501
|
}
|
|
56359
56502
|
|
|
56360
56503
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
56361
|
-
'dataset'?:
|
|
56504
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
56362
56505
|
'sourceFact'?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
56363
56506
|
}
|
|
56364
56507
|
|
|
@@ -56377,7 +56520,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
56377
56520
|
* API identifier of an object
|
|
56378
56521
|
*/
|
|
56379
56522
|
'id': string;
|
|
56380
|
-
'meta'?:
|
|
56523
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56381
56524
|
'attributes': JsonApiAggregatedFactOutAttributes;
|
|
56382
56525
|
'relationships'?: JsonApiAggregatedFactOutRelationships;
|
|
56383
56526
|
'links'?: ObjectLinks;
|
|
@@ -56490,7 +56633,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
56490
56633
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
56491
56634
|
'data': Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
56492
56635
|
'links'?: ListLinks;
|
|
56493
|
-
'meta'?:
|
|
56636
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56494
56637
|
/**
|
|
56495
56638
|
* Included resources
|
|
56496
56639
|
*/
|
|
@@ -56502,7 +56645,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
56502
56645
|
* List of valid permissions for a logged-in user.
|
|
56503
56646
|
*/
|
|
56504
56647
|
'permissions'?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
56505
|
-
'origin'?:
|
|
56648
|
+
'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
56506
56649
|
'accessInfo'?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
56507
56650
|
}
|
|
56508
56651
|
|
|
@@ -56513,17 +56656,30 @@ export declare interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
56513
56656
|
'private': boolean;
|
|
56514
56657
|
}
|
|
56515
56658
|
|
|
56659
|
+
export declare interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
56660
|
+
/**
|
|
56661
|
+
* defines type of the origin of the entity
|
|
56662
|
+
*/
|
|
56663
|
+
'originType': JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
56664
|
+
/**
|
|
56665
|
+
* defines id of the workspace where the entity comes from
|
|
56666
|
+
*/
|
|
56667
|
+
'originId': string;
|
|
56668
|
+
}
|
|
56669
|
+
|
|
56670
|
+
export declare type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
|
|
56671
|
+
|
|
56516
56672
|
export declare type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = 'EDIT' | 'SHARE' | 'VIEW';
|
|
56517
56673
|
|
|
56518
56674
|
export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
56519
|
-
'createdBy'?:
|
|
56520
|
-
'modifiedBy'?:
|
|
56521
|
-
'certifiedBy'?:
|
|
56675
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56676
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56677
|
+
'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56522
56678
|
'visualizationObjects'?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
56523
56679
|
'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
56524
|
-
'labels'?:
|
|
56525
|
-
'metrics'?:
|
|
56526
|
-
'datasets'?:
|
|
56680
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
56681
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
56682
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
56527
56683
|
'filterContexts'?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
56528
56684
|
'dashboardPlugins'?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
56529
56685
|
}
|
|
@@ -56535,6 +56691,10 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDas
|
|
|
56535
56691
|
'data': Array<JsonApiAnalyticalDashboardLinkage>;
|
|
56536
56692
|
}
|
|
56537
56693
|
|
|
56694
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
56695
|
+
'data': JsonApiUserIdentifierLinkage | null;
|
|
56696
|
+
}
|
|
56697
|
+
|
|
56538
56698
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
56539
56699
|
/**
|
|
56540
56700
|
* 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 +56702,13 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlug
|
|
|
56542
56702
|
'data': Array<JsonApiDashboardPluginLinkage>;
|
|
56543
56703
|
}
|
|
56544
56704
|
|
|
56705
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
56706
|
+
/**
|
|
56707
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56708
|
+
*/
|
|
56709
|
+
'data': Array<JsonApiDatasetLinkage>;
|
|
56710
|
+
}
|
|
56711
|
+
|
|
56545
56712
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
56546
56713
|
/**
|
|
56547
56714
|
* 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 +56716,20 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContext
|
|
|
56549
56716
|
'data': Array<JsonApiFilterContextLinkage>;
|
|
56550
56717
|
}
|
|
56551
56718
|
|
|
56719
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
56720
|
+
/**
|
|
56721
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56722
|
+
*/
|
|
56723
|
+
'data': Array<JsonApiLabelLinkage>;
|
|
56724
|
+
}
|
|
56725
|
+
|
|
56726
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
56727
|
+
/**
|
|
56728
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56729
|
+
*/
|
|
56730
|
+
'data': Array<JsonApiMetricLinkage>;
|
|
56731
|
+
}
|
|
56732
|
+
|
|
56552
56733
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
56553
56734
|
/**
|
|
56554
56735
|
* 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 +56881,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
56700
56881
|
export declare interface JsonApiApiTokenOutList {
|
|
56701
56882
|
'data': Array<JsonApiApiTokenOutWithLinks>;
|
|
56702
56883
|
'links'?: ListLinks;
|
|
56703
|
-
'meta'?:
|
|
56704
|
-
}
|
|
56705
|
-
|
|
56706
|
-
export declare interface JsonApiApiTokenOutListMeta {
|
|
56707
|
-
'page'?: PageMetadata;
|
|
56884
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56708
56885
|
}
|
|
56709
56886
|
|
|
56710
56887
|
export declare type JsonApiApiTokenOutTypeEnum = 'apiToken';
|
|
@@ -56778,7 +56955,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
56778
56955
|
* API identifier of an object
|
|
56779
56956
|
*/
|
|
56780
56957
|
'id': string;
|
|
56781
|
-
'meta'?:
|
|
56958
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56782
56959
|
'attributes'?: JsonApiAttributeHierarchyOutAttributes;
|
|
56783
56960
|
'relationships'?: JsonApiAttributeHierarchyOutRelationships;
|
|
56784
56961
|
}
|
|
@@ -56822,7 +56999,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
56822
56999
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
56823
57000
|
'data': Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
56824
57001
|
'links'?: ListLinks;
|
|
56825
|
-
'meta'?:
|
|
57002
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56826
57003
|
/**
|
|
56827
57004
|
* Included resources
|
|
56828
57005
|
*/
|
|
@@ -56830,9 +57007,9 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
56830
57007
|
}
|
|
56831
57008
|
|
|
56832
57009
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
56833
|
-
'createdBy'?:
|
|
56834
|
-
'modifiedBy'?:
|
|
56835
|
-
'attributes'?:
|
|
57010
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57011
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57012
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
56836
57013
|
}
|
|
56837
57014
|
|
|
56838
57015
|
export declare type JsonApiAttributeHierarchyOutTypeEnum = 'attributeHierarchy';
|
|
@@ -56846,7 +57023,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
56846
57023
|
* API identifier of an object
|
|
56847
57024
|
*/
|
|
56848
57025
|
'id': string;
|
|
56849
|
-
'meta'?:
|
|
57026
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56850
57027
|
'attributes'?: JsonApiAttributeHierarchyOutAttributes;
|
|
56851
57028
|
'relationships'?: JsonApiAttributeHierarchyOutRelationships;
|
|
56852
57029
|
'links'?: ObjectLinks;
|
|
@@ -56897,7 +57074,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
56897
57074
|
* API identifier of an object
|
|
56898
57075
|
*/
|
|
56899
57076
|
'id': string;
|
|
56900
|
-
'meta'?:
|
|
57077
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56901
57078
|
'attributes'?: JsonApiAttributeOutAttributes;
|
|
56902
57079
|
'relationships'?: JsonApiAttributeOutRelationships;
|
|
56903
57080
|
}
|
|
@@ -56944,7 +57121,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
56944
57121
|
export declare interface JsonApiAttributeOutList {
|
|
56945
57122
|
'data': Array<JsonApiAttributeOutWithLinks>;
|
|
56946
57123
|
'links'?: ListLinks;
|
|
56947
|
-
'meta'?:
|
|
57124
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56948
57125
|
/**
|
|
56949
57126
|
* Included resources
|
|
56950
57127
|
*/
|
|
@@ -56952,9 +57129,9 @@ export declare interface JsonApiAttributeOutList {
|
|
|
56952
57129
|
}
|
|
56953
57130
|
|
|
56954
57131
|
export declare interface JsonApiAttributeOutRelationships {
|
|
56955
|
-
'dataset'?:
|
|
57132
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
56956
57133
|
'defaultView'?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
56957
|
-
'labels'?:
|
|
57134
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
56958
57135
|
'attributeHierarchies'?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
56959
57136
|
}
|
|
56960
57137
|
|
|
@@ -56965,15 +57142,12 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
56965
57142
|
'data': Array<JsonApiAttributeHierarchyLinkage>;
|
|
56966
57143
|
}
|
|
56967
57144
|
|
|
56968
|
-
export declare interface
|
|
56969
|
-
'data':
|
|
57145
|
+
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
57146
|
+
'data': JsonApiDatasetLinkage | null;
|
|
56970
57147
|
}
|
|
56971
57148
|
|
|
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>;
|
|
57149
|
+
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
57150
|
+
'data': JsonApiLabelLinkage | null;
|
|
56977
57151
|
}
|
|
56978
57152
|
|
|
56979
57153
|
export declare type JsonApiAttributeOutTypeEnum = 'attribute';
|
|
@@ -56987,7 +57161,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
56987
57161
|
* API identifier of an object
|
|
56988
57162
|
*/
|
|
56989
57163
|
'id': string;
|
|
56990
|
-
'meta'?:
|
|
57164
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56991
57165
|
'attributes'?: JsonApiAttributeOutAttributes;
|
|
56992
57166
|
'relationships'?: JsonApiAttributeOutRelationships;
|
|
56993
57167
|
'links'?: ObjectLinks;
|
|
@@ -57007,10 +57181,16 @@ export declare interface JsonApiAttributePatch {
|
|
|
57007
57181
|
* API identifier of an object
|
|
57008
57182
|
*/
|
|
57009
57183
|
'id': string;
|
|
57010
|
-
'attributes'?:
|
|
57184
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
57011
57185
|
'relationships'?: JsonApiAttributePatchRelationships;
|
|
57012
57186
|
}
|
|
57013
57187
|
|
|
57188
|
+
export declare interface JsonApiAttributePatchAttributes {
|
|
57189
|
+
'title'?: string;
|
|
57190
|
+
'description'?: string;
|
|
57191
|
+
'tags'?: Array<string>;
|
|
57192
|
+
}
|
|
57193
|
+
|
|
57014
57194
|
export declare interface JsonApiAttributePatchDocument {
|
|
57015
57195
|
'data': JsonApiAttributePatch;
|
|
57016
57196
|
}
|
|
@@ -57033,14 +57213,57 @@ export declare interface JsonApiAutomationIn {
|
|
|
57033
57213
|
* API identifier of an object
|
|
57034
57214
|
*/
|
|
57035
57215
|
'id': string;
|
|
57036
|
-
'attributes'?:
|
|
57037
|
-
'relationships'?:
|
|
57216
|
+
'attributes'?: JsonApiAutomationInAttributes;
|
|
57217
|
+
'relationships'?: JsonApiAutomationInRelationships;
|
|
57218
|
+
}
|
|
57219
|
+
|
|
57220
|
+
export declare interface JsonApiAutomationInAttributes {
|
|
57221
|
+
'title'?: string;
|
|
57222
|
+
'description'?: string;
|
|
57223
|
+
'tags'?: Array<string>;
|
|
57224
|
+
'areRelationsValid'?: boolean;
|
|
57225
|
+
/**
|
|
57226
|
+
* Additional details to be included in the automated message.
|
|
57227
|
+
*/
|
|
57228
|
+
'details'?: object;
|
|
57229
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
57230
|
+
/**
|
|
57231
|
+
* Current state of the automation.
|
|
57232
|
+
*/
|
|
57233
|
+
'state'?: JsonApiAutomationInAttributesStateEnum;
|
|
57234
|
+
/**
|
|
57235
|
+
* Specify automation evaluation mode.
|
|
57236
|
+
*/
|
|
57237
|
+
'evaluationMode'?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
57238
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
57239
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
57240
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
57241
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
57242
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
57243
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
57244
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
57245
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
57246
|
+
/**
|
|
57247
|
+
* External recipients of the automation action results.
|
|
57248
|
+
*/
|
|
57249
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
57038
57250
|
}
|
|
57039
57251
|
|
|
57252
|
+
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57253
|
+
|
|
57254
|
+
export declare type JsonApiAutomationInAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57255
|
+
|
|
57040
57256
|
export declare interface JsonApiAutomationInDocument {
|
|
57041
57257
|
'data': JsonApiAutomationIn;
|
|
57042
57258
|
}
|
|
57043
57259
|
|
|
57260
|
+
export declare interface JsonApiAutomationInRelationships {
|
|
57261
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
57262
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
57263
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
57264
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
57265
|
+
}
|
|
57266
|
+
|
|
57044
57267
|
export declare type JsonApiAutomationInTypeEnum = 'automation';
|
|
57045
57268
|
|
|
57046
57269
|
/**
|
|
@@ -57065,7 +57288,7 @@ export declare interface JsonApiAutomationOut {
|
|
|
57065
57288
|
* API identifier of an object
|
|
57066
57289
|
*/
|
|
57067
57290
|
'id': string;
|
|
57068
|
-
'meta'?:
|
|
57291
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57069
57292
|
'attributes'?: JsonApiAutomationOutAttributes;
|
|
57070
57293
|
'relationships'?: JsonApiAutomationOutRelationships;
|
|
57071
57294
|
}
|
|
@@ -57079,7 +57302,7 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57079
57302
|
* Additional details to be included in the automated message.
|
|
57080
57303
|
*/
|
|
57081
57304
|
'details'?: object;
|
|
57082
|
-
'metadata'?:
|
|
57305
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
57083
57306
|
/**
|
|
57084
57307
|
* Current state of the automation.
|
|
57085
57308
|
*/
|
|
@@ -57088,18 +57311,18 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57088
57311
|
* Specify automation evaluation mode.
|
|
57089
57312
|
*/
|
|
57090
57313
|
'evaluationMode'?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
57091
|
-
'schedule'?:
|
|
57092
|
-
'alert'?:
|
|
57093
|
-
'tabularExports'?: Array<
|
|
57094
|
-
'visualExports'?: Array<
|
|
57095
|
-
'imageExports'?: Array<
|
|
57096
|
-
'rawExports'?: Array<
|
|
57097
|
-
'slidesExports'?: Array<
|
|
57098
|
-
'dashboardTabularExports'?: Array<
|
|
57314
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
57315
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
57316
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
57317
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
57318
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
57319
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
57320
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
57321
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
57099
57322
|
/**
|
|
57100
57323
|
* External recipients of the automation action results.
|
|
57101
57324
|
*/
|
|
57102
|
-
'externalRecipients'?: Array<
|
|
57325
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
57103
57326
|
/**
|
|
57104
57327
|
* Time of the entity creation.
|
|
57105
57328
|
*/
|
|
@@ -57110,86 +57333,10 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57110
57333
|
'modifiedAt'?: string | null;
|
|
57111
57334
|
}
|
|
57112
57335
|
|
|
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
57336
|
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57135
57337
|
|
|
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
57338
|
export declare type JsonApiAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57184
57339
|
|
|
57185
|
-
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
57186
|
-
'requestPayload': TabularExportRequest;
|
|
57187
|
-
}
|
|
57188
|
-
|
|
57189
|
-
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
57190
|
-
'requestPayload': VisualExportRequest;
|
|
57191
|
-
}
|
|
57192
|
-
|
|
57193
57340
|
export declare interface JsonApiAutomationOutDocument {
|
|
57194
57341
|
'data': JsonApiAutomationOut;
|
|
57195
57342
|
'links'?: ObjectLinks;
|
|
@@ -57210,7 +57357,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
57210
57357
|
export declare interface JsonApiAutomationOutList {
|
|
57211
57358
|
'data': Array<JsonApiAutomationOutWithLinks>;
|
|
57212
57359
|
'links'?: ListLinks;
|
|
57213
|
-
'meta'?:
|
|
57360
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57214
57361
|
/**
|
|
57215
57362
|
* Included resources
|
|
57216
57363
|
*/
|
|
@@ -57218,38 +57365,13 @@ export declare interface JsonApiAutomationOutList {
|
|
|
57218
57365
|
}
|
|
57219
57366
|
|
|
57220
57367
|
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>;
|
|
57368
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
57369
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
57370
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57371
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57372
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
57373
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
57374
|
+
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
57253
57375
|
}
|
|
57254
57376
|
|
|
57255
57377
|
export declare type JsonApiAutomationOutTypeEnum = 'automation';
|
|
@@ -57263,7 +57385,7 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
57263
57385
|
* API identifier of an object
|
|
57264
57386
|
*/
|
|
57265
57387
|
'id': string;
|
|
57266
|
-
'meta'?:
|
|
57388
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57267
57389
|
'attributes'?: JsonApiAutomationOutAttributes;
|
|
57268
57390
|
'relationships'?: JsonApiAutomationOutRelationships;
|
|
57269
57391
|
'links'?: ObjectLinks;
|
|
@@ -57283,57 +57405,14 @@ export declare interface JsonApiAutomationPatch {
|
|
|
57283
57405
|
* API identifier of an object
|
|
57284
57406
|
*/
|
|
57285
57407
|
'id': string;
|
|
57286
|
-
'attributes'?:
|
|
57287
|
-
'relationships'?:
|
|
57288
|
-
}
|
|
57289
|
-
|
|
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>;
|
|
57408
|
+
'attributes'?: JsonApiAutomationInAttributes;
|
|
57409
|
+
'relationships'?: JsonApiAutomationInRelationships;
|
|
57320
57410
|
}
|
|
57321
57411
|
|
|
57322
|
-
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57323
|
-
|
|
57324
|
-
export declare type JsonApiAutomationPatchAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57325
|
-
|
|
57326
57412
|
export declare interface JsonApiAutomationPatchDocument {
|
|
57327
57413
|
'data': JsonApiAutomationPatch;
|
|
57328
57414
|
}
|
|
57329
57415
|
|
|
57330
|
-
export declare interface JsonApiAutomationPatchRelationships {
|
|
57331
|
-
'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
57332
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
57333
|
-
'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
57334
|
-
'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
|
|
57335
|
-
}
|
|
57336
|
-
|
|
57337
57416
|
export declare type JsonApiAutomationPatchTypeEnum = 'automation';
|
|
57338
57417
|
|
|
57339
57418
|
/**
|
|
@@ -57383,7 +57462,7 @@ export declare type JsonApiAutomationResultOutAttributesStatusEnum = 'SUCCESS' |
|
|
|
57383
57462
|
export declare interface JsonApiAutomationResultOutList {
|
|
57384
57463
|
'data': Array<JsonApiAutomationResultOutWithLinks>;
|
|
57385
57464
|
'links'?: ListLinks;
|
|
57386
|
-
'meta'?:
|
|
57465
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57387
57466
|
/**
|
|
57388
57467
|
* Included resources
|
|
57389
57468
|
*/
|
|
@@ -57391,7 +57470,11 @@ export declare interface JsonApiAutomationResultOutList {
|
|
|
57391
57470
|
}
|
|
57392
57471
|
|
|
57393
57472
|
export declare interface JsonApiAutomationResultOutRelationships {
|
|
57394
|
-
'automation'?:
|
|
57473
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
57474
|
+
}
|
|
57475
|
+
|
|
57476
|
+
export declare interface JsonApiAutomationResultOutRelationshipsAutomation {
|
|
57477
|
+
'data': JsonApiAutomationLinkage | null;
|
|
57395
57478
|
}
|
|
57396
57479
|
|
|
57397
57480
|
export declare type JsonApiAutomationResultOutTypeEnum = 'automationResult';
|
|
@@ -57424,7 +57507,15 @@ export declare interface JsonApiColorPaletteIn {
|
|
|
57424
57507
|
* API identifier of an object
|
|
57425
57508
|
*/
|
|
57426
57509
|
'id': string;
|
|
57427
|
-
'attributes':
|
|
57510
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
57511
|
+
}
|
|
57512
|
+
|
|
57513
|
+
export declare interface JsonApiColorPaletteInAttributes {
|
|
57514
|
+
'name': string;
|
|
57515
|
+
/**
|
|
57516
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
57517
|
+
*/
|
|
57518
|
+
'content': object;
|
|
57428
57519
|
}
|
|
57429
57520
|
|
|
57430
57521
|
export declare interface JsonApiColorPaletteInDocument {
|
|
@@ -57445,15 +57536,7 @@ export declare interface JsonApiColorPaletteOut {
|
|
|
57445
57536
|
* API identifier of an object
|
|
57446
57537
|
*/
|
|
57447
57538
|
'id': string;
|
|
57448
|
-
'attributes':
|
|
57449
|
-
}
|
|
57450
|
-
|
|
57451
|
-
export declare interface JsonApiColorPaletteOutAttributes {
|
|
57452
|
-
'name': string;
|
|
57453
|
-
/**
|
|
57454
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
57455
|
-
*/
|
|
57456
|
-
'content': object;
|
|
57539
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
57457
57540
|
}
|
|
57458
57541
|
|
|
57459
57542
|
export declare interface JsonApiColorPaletteOutDocument {
|
|
@@ -57467,7 +57550,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
57467
57550
|
export declare interface JsonApiColorPaletteOutList {
|
|
57468
57551
|
'data': Array<JsonApiColorPaletteOutWithLinks>;
|
|
57469
57552
|
'links'?: ListLinks;
|
|
57470
|
-
'meta'?:
|
|
57553
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57471
57554
|
}
|
|
57472
57555
|
|
|
57473
57556
|
export declare type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
|
|
@@ -57481,7 +57564,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
|
|
|
57481
57564
|
* API identifier of an object
|
|
57482
57565
|
*/
|
|
57483
57566
|
'id': string;
|
|
57484
|
-
'attributes':
|
|
57567
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
57485
57568
|
'links'?: ObjectLinks;
|
|
57486
57569
|
}
|
|
57487
57570
|
|
|
@@ -57528,15 +57611,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
57528
57611
|
* API identifier of an object
|
|
57529
57612
|
*/
|
|
57530
57613
|
'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;
|
|
57614
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
57540
57615
|
}
|
|
57541
57616
|
|
|
57542
57617
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -57557,7 +57632,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
57557
57632
|
* API identifier of an object
|
|
57558
57633
|
*/
|
|
57559
57634
|
'id': string;
|
|
57560
|
-
'attributes'?:
|
|
57635
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
57561
57636
|
}
|
|
57562
57637
|
|
|
57563
57638
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -57579,7 +57654,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
57579
57654
|
* API identifier of an object
|
|
57580
57655
|
*/
|
|
57581
57656
|
'id': string;
|
|
57582
|
-
'attributes'?:
|
|
57657
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
57658
|
+
}
|
|
57659
|
+
|
|
57660
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
57661
|
+
'lastRotation'?: string;
|
|
57662
|
+
/**
|
|
57663
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
57664
|
+
*/
|
|
57665
|
+
'rotationInterval'?: string;
|
|
57583
57666
|
}
|
|
57584
57667
|
|
|
57585
57668
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -57600,7 +57683,11 @@ export declare interface JsonApiCspDirectiveIn {
|
|
|
57600
57683
|
* API identifier of an object
|
|
57601
57684
|
*/
|
|
57602
57685
|
'id': string;
|
|
57603
|
-
'attributes':
|
|
57686
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
57687
|
+
}
|
|
57688
|
+
|
|
57689
|
+
export declare interface JsonApiCspDirectiveInAttributes {
|
|
57690
|
+
'sources': Array<string>;
|
|
57604
57691
|
}
|
|
57605
57692
|
|
|
57606
57693
|
export declare interface JsonApiCspDirectiveInDocument {
|
|
@@ -57621,11 +57708,7 @@ export declare interface JsonApiCspDirectiveOut {
|
|
|
57621
57708
|
* API identifier of an object
|
|
57622
57709
|
*/
|
|
57623
57710
|
'id': string;
|
|
57624
|
-
'attributes':
|
|
57625
|
-
}
|
|
57626
|
-
|
|
57627
|
-
export declare interface JsonApiCspDirectiveOutAttributes {
|
|
57628
|
-
'sources': Array<string>;
|
|
57711
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
57629
57712
|
}
|
|
57630
57713
|
|
|
57631
57714
|
export declare interface JsonApiCspDirectiveOutDocument {
|
|
@@ -57639,7 +57722,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
57639
57722
|
export declare interface JsonApiCspDirectiveOutList {
|
|
57640
57723
|
'data': Array<JsonApiCspDirectiveOutWithLinks>;
|
|
57641
57724
|
'links'?: ListLinks;
|
|
57642
|
-
'meta'?:
|
|
57725
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57643
57726
|
}
|
|
57644
57727
|
|
|
57645
57728
|
export declare type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
|
|
@@ -57653,7 +57736,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
|
|
|
57653
57736
|
* API identifier of an object
|
|
57654
57737
|
*/
|
|
57655
57738
|
'id': string;
|
|
57656
|
-
'attributes':
|
|
57739
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
57657
57740
|
'links'?: ObjectLinks;
|
|
57658
57741
|
}
|
|
57659
57742
|
|
|
@@ -57696,7 +57779,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
57696
57779
|
* API identifier of an object
|
|
57697
57780
|
*/
|
|
57698
57781
|
'id': string;
|
|
57699
|
-
'attributes':
|
|
57782
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57700
57783
|
}
|
|
57701
57784
|
|
|
57702
57785
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -57717,16 +57800,8 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
57717
57800
|
* API identifier of an object
|
|
57718
57801
|
*/
|
|
57719
57802
|
'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;
|
|
57803
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57804
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57730
57805
|
}
|
|
57731
57806
|
|
|
57732
57807
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -57740,7 +57815,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
57740
57815
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
57741
57816
|
'data': Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
57742
57817
|
'links'?: ListLinks;
|
|
57743
|
-
'meta'?:
|
|
57818
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57744
57819
|
}
|
|
57745
57820
|
|
|
57746
57821
|
export declare type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
|
|
@@ -57754,8 +57829,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
57754
57829
|
* API identifier of an object
|
|
57755
57830
|
*/
|
|
57756
57831
|
'id': string;
|
|
57757
|
-
'meta'?:
|
|
57758
|
-
'attributes':
|
|
57832
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57833
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57759
57834
|
'links'?: ObjectLinks;
|
|
57760
57835
|
}
|
|
57761
57836
|
|
|
@@ -57802,7 +57877,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
57802
57877
|
* API identifier of an object
|
|
57803
57878
|
*/
|
|
57804
57879
|
'id'?: string;
|
|
57805
|
-
'attributes':
|
|
57880
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57881
|
+
}
|
|
57882
|
+
|
|
57883
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
57884
|
+
'applicationName': string;
|
|
57885
|
+
/**
|
|
57886
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
57887
|
+
*/
|
|
57888
|
+
'content': object;
|
|
57806
57889
|
}
|
|
57807
57890
|
|
|
57808
57891
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -57823,7 +57906,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
57823
57906
|
* API identifier of an object
|
|
57824
57907
|
*/
|
|
57825
57908
|
'id': string;
|
|
57826
|
-
'attributes'?:
|
|
57909
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57910
|
+
}
|
|
57911
|
+
|
|
57912
|
+
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
57913
|
+
'name'?: string | null;
|
|
57914
|
+
'description'?: string | null;
|
|
57827
57915
|
}
|
|
57828
57916
|
|
|
57829
57917
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -57844,12 +57932,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
57844
57932
|
* API identifier of an object
|
|
57845
57933
|
*/
|
|
57846
57934
|
'id': string;
|
|
57847
|
-
'attributes'?:
|
|
57848
|
-
}
|
|
57849
|
-
|
|
57850
|
-
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
57851
|
-
'name'?: string | null;
|
|
57852
|
-
'description'?: string | null;
|
|
57935
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57853
57936
|
}
|
|
57854
57937
|
|
|
57855
57938
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -57863,7 +57946,11 @@ export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
|
57863
57946
|
export declare interface JsonApiCustomGeoCollectionOutList {
|
|
57864
57947
|
'data': Array<JsonApiCustomGeoCollectionOutWithLinks>;
|
|
57865
57948
|
'links'?: ListLinks;
|
|
57866
|
-
'meta'?:
|
|
57949
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57950
|
+
}
|
|
57951
|
+
|
|
57952
|
+
export declare interface JsonApiCustomGeoCollectionOutListMeta {
|
|
57953
|
+
'page'?: PageMetadata;
|
|
57867
57954
|
}
|
|
57868
57955
|
|
|
57869
57956
|
export declare type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
|
|
@@ -57877,7 +57964,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
57877
57964
|
* API identifier of an object
|
|
57878
57965
|
*/
|
|
57879
57966
|
'id': string;
|
|
57880
|
-
'attributes'?:
|
|
57967
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57881
57968
|
'links'?: ObjectLinks;
|
|
57882
57969
|
}
|
|
57883
57970
|
|
|
@@ -57895,7 +57982,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
57895
57982
|
* API identifier of an object
|
|
57896
57983
|
*/
|
|
57897
57984
|
'id': string;
|
|
57898
|
-
'attributes'?:
|
|
57985
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57899
57986
|
}
|
|
57900
57987
|
|
|
57901
57988
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -57947,7 +58034,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
57947
58034
|
* API identifier of an object
|
|
57948
58035
|
*/
|
|
57949
58036
|
'id': string;
|
|
57950
|
-
'meta'?:
|
|
58037
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57951
58038
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
57952
58039
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
57953
58040
|
}
|
|
@@ -57986,7 +58073,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
57986
58073
|
export declare interface JsonApiDashboardPluginOutList {
|
|
57987
58074
|
'data': Array<JsonApiDashboardPluginOutWithLinks>;
|
|
57988
58075
|
'links'?: ListLinks;
|
|
57989
|
-
'meta'?:
|
|
58076
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57990
58077
|
/**
|
|
57991
58078
|
* Included resources
|
|
57992
58079
|
*/
|
|
@@ -57994,8 +58081,8 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
57994
58081
|
}
|
|
57995
58082
|
|
|
57996
58083
|
export declare interface JsonApiDashboardPluginOutRelationships {
|
|
57997
|
-
'createdBy'?:
|
|
57998
|
-
'modifiedBy'?:
|
|
58084
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58085
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57999
58086
|
}
|
|
58000
58087
|
|
|
58001
58088
|
export declare type JsonApiDashboardPluginOutTypeEnum = 'dashboardPlugin';
|
|
@@ -58009,7 +58096,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
58009
58096
|
* API identifier of an object
|
|
58010
58097
|
*/
|
|
58011
58098
|
'id': string;
|
|
58012
|
-
'meta'?:
|
|
58099
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58013
58100
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
58014
58101
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
58015
58102
|
'links'?: ObjectLinks;
|
|
@@ -58092,7 +58179,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
58092
58179
|
* API identifier of an object
|
|
58093
58180
|
*/
|
|
58094
58181
|
'id': string;
|
|
58095
|
-
'meta'?:
|
|
58182
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58096
58183
|
'attributes': JsonApiDatasetOutAttributes;
|
|
58097
58184
|
'relationships'?: JsonApiDatasetOutRelationships;
|
|
58098
58185
|
}
|
|
@@ -58178,7 +58265,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
58178
58265
|
export declare interface JsonApiDatasetOutList {
|
|
58179
58266
|
'data': Array<JsonApiDatasetOutWithLinks>;
|
|
58180
58267
|
'links'?: ListLinks;
|
|
58181
|
-
'meta'?:
|
|
58268
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58182
58269
|
/**
|
|
58183
58270
|
* Included resources
|
|
58184
58271
|
*/
|
|
@@ -58186,10 +58273,10 @@ export declare interface JsonApiDatasetOutList {
|
|
|
58186
58273
|
}
|
|
58187
58274
|
|
|
58188
58275
|
export declare interface JsonApiDatasetOutRelationships {
|
|
58189
|
-
'attributes'?:
|
|
58190
|
-
'facts'?:
|
|
58276
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
58277
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
58191
58278
|
'aggregatedFacts'?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
58192
|
-
'references'?:
|
|
58279
|
+
'references'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
58193
58280
|
'workspaceDataFilters'?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
58194
58281
|
}
|
|
58195
58282
|
|
|
@@ -58200,6 +58287,20 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
58200
58287
|
'data': Array<JsonApiAggregatedFactLinkage>;
|
|
58201
58288
|
}
|
|
58202
58289
|
|
|
58290
|
+
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
58291
|
+
/**
|
|
58292
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
58293
|
+
*/
|
|
58294
|
+
'data': Array<JsonApiAttributeLinkage>;
|
|
58295
|
+
}
|
|
58296
|
+
|
|
58297
|
+
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
58298
|
+
/**
|
|
58299
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
58300
|
+
*/
|
|
58301
|
+
'data': Array<JsonApiFactLinkage>;
|
|
58302
|
+
}
|
|
58303
|
+
|
|
58203
58304
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
58204
58305
|
/**
|
|
58205
58306
|
* 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 +58319,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
58218
58319
|
* API identifier of an object
|
|
58219
58320
|
*/
|
|
58220
58321
|
'id': string;
|
|
58221
|
-
'meta'?:
|
|
58322
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58222
58323
|
'attributes': JsonApiDatasetOutAttributes;
|
|
58223
58324
|
'relationships'?: JsonApiDatasetOutRelationships;
|
|
58224
58325
|
'links'?: ObjectLinks;
|
|
@@ -58238,7 +58339,7 @@ export declare interface JsonApiDatasetPatch {
|
|
|
58238
58339
|
* API identifier of an object
|
|
58239
58340
|
*/
|
|
58240
58341
|
'id': string;
|
|
58241
|
-
'attributes'?:
|
|
58342
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
58242
58343
|
}
|
|
58243
58344
|
|
|
58244
58345
|
export declare interface JsonApiDatasetPatchDocument {
|
|
@@ -58282,7 +58383,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
58282
58383
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
58283
58384
|
'data': Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
58284
58385
|
'links'?: ListLinks;
|
|
58285
|
-
'meta'?:
|
|
58386
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58286
58387
|
}
|
|
58287
58388
|
|
|
58288
58389
|
export declare type JsonApiDataSourceIdentifierOutTypeEnum = 'dataSourceIdentifier';
|
|
@@ -58472,7 +58573,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
58472
58573
|
export declare interface JsonApiDataSourceOutList {
|
|
58473
58574
|
'data': Array<JsonApiDataSourceOutWithLinks>;
|
|
58474
58575
|
'links'?: ListLinks;
|
|
58475
|
-
'meta'?:
|
|
58576
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58476
58577
|
}
|
|
58477
58578
|
|
|
58478
58579
|
export declare interface JsonApiDataSourceOutMeta {
|
|
@@ -58617,7 +58718,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
58617
58718
|
export declare interface JsonApiEntitlementOutList {
|
|
58618
58719
|
'data': Array<JsonApiEntitlementOutWithLinks>;
|
|
58619
58720
|
'links'?: ListLinks;
|
|
58620
|
-
'meta'?:
|
|
58721
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58621
58722
|
}
|
|
58622
58723
|
|
|
58623
58724
|
export declare type JsonApiEntitlementOutTypeEnum = 'entitlement';
|
|
@@ -58649,8 +58750,8 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
58649
58750
|
* API identifier of an object
|
|
58650
58751
|
*/
|
|
58651
58752
|
'id': string;
|
|
58652
|
-
'attributes'?:
|
|
58653
|
-
'relationships'?:
|
|
58753
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58754
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58654
58755
|
}
|
|
58655
58756
|
|
|
58656
58757
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
@@ -58681,7 +58782,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
58681
58782
|
* API identifier of an object
|
|
58682
58783
|
*/
|
|
58683
58784
|
'id': string;
|
|
58684
|
-
'meta'?:
|
|
58785
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58685
58786
|
'attributes'?: JsonApiExportDefinitionOutAttributes;
|
|
58686
58787
|
'relationships'?: JsonApiExportDefinitionOutRelationships;
|
|
58687
58788
|
}
|
|
@@ -58728,23 +58829,27 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
58728
58829
|
export declare interface JsonApiExportDefinitionOutList {
|
|
58729
58830
|
'data': Array<JsonApiExportDefinitionOutWithLinks>;
|
|
58730
58831
|
'links'?: ListLinks;
|
|
58731
|
-
'meta'?:
|
|
58832
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58732
58833
|
/**
|
|
58733
58834
|
* Included resources
|
|
58734
58835
|
*/
|
|
58735
58836
|
'included'?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
58736
58837
|
}
|
|
58737
58838
|
|
|
58839
|
+
export declare interface JsonApiExportDefinitionOutMeta {
|
|
58840
|
+
'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
58841
|
+
}
|
|
58842
|
+
|
|
58738
58843
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
58739
58844
|
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58740
|
-
'analyticalDashboard'?:
|
|
58741
|
-
'automation'?:
|
|
58742
|
-
'createdBy'?:
|
|
58743
|
-
'modifiedBy'?:
|
|
58845
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
58846
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
58847
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58848
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58744
58849
|
}
|
|
58745
58850
|
|
|
58746
|
-
export declare interface
|
|
58747
|
-
'data':
|
|
58851
|
+
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
58852
|
+
'data': JsonApiAnalyticalDashboardLinkage | null;
|
|
58748
58853
|
}
|
|
58749
58854
|
|
|
58750
58855
|
export declare interface JsonApiExportDefinitionOutRelationshipsVisualizationObject {
|
|
@@ -58762,7 +58867,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
58762
58867
|
* API identifier of an object
|
|
58763
58868
|
*/
|
|
58764
58869
|
'id': string;
|
|
58765
|
-
'meta'?:
|
|
58870
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58766
58871
|
'attributes'?: JsonApiExportDefinitionOutAttributes;
|
|
58767
58872
|
'relationships'?: JsonApiExportDefinitionOutRelationships;
|
|
58768
58873
|
'links'?: ObjectLinks;
|
|
@@ -58782,27 +58887,14 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
58782
58887
|
* API identifier of an object
|
|
58783
58888
|
*/
|
|
58784
58889
|
'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;
|
|
58890
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58891
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58795
58892
|
}
|
|
58796
58893
|
|
|
58797
58894
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
58798
58895
|
'data': JsonApiExportDefinitionPatch;
|
|
58799
58896
|
}
|
|
58800
58897
|
|
|
58801
|
-
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
58802
|
-
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58803
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
58804
|
-
}
|
|
58805
|
-
|
|
58806
58898
|
export declare type JsonApiExportDefinitionPatchTypeEnum = 'exportDefinition';
|
|
58807
58899
|
|
|
58808
58900
|
/**
|
|
@@ -58817,14 +58909,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
58817
58909
|
* API identifier of an object
|
|
58818
58910
|
*/
|
|
58819
58911
|
'id'?: string;
|
|
58820
|
-
'attributes'?:
|
|
58821
|
-
'relationships'?:
|
|
58912
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58913
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58914
|
+
}
|
|
58915
|
+
|
|
58916
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
58917
|
+
'title'?: string;
|
|
58918
|
+
'description'?: string;
|
|
58919
|
+
'tags'?: Array<string>;
|
|
58920
|
+
'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
58921
|
+
'areRelationsValid'?: boolean;
|
|
58822
58922
|
}
|
|
58823
58923
|
|
|
58824
58924
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
58825
58925
|
'data': JsonApiExportDefinitionPostOptionalId;
|
|
58826
58926
|
}
|
|
58827
58927
|
|
|
58928
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
58929
|
+
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58930
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
58931
|
+
}
|
|
58932
|
+
|
|
58828
58933
|
export declare type JsonApiExportDefinitionPostOptionalIdTypeEnum = 'exportDefinition';
|
|
58829
58934
|
|
|
58830
58935
|
/**
|
|
@@ -58839,7 +58944,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
58839
58944
|
* API identifier of an object
|
|
58840
58945
|
*/
|
|
58841
58946
|
'id': string;
|
|
58842
|
-
'attributes':
|
|
58947
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
58843
58948
|
}
|
|
58844
58949
|
|
|
58845
58950
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -58860,47 +58965,9 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
58860
58965
|
* API identifier of an object
|
|
58861
58966
|
*/
|
|
58862
58967
|
'id': string;
|
|
58863
|
-
'attributes':
|
|
58864
|
-
}
|
|
58865
|
-
|
|
58866
|
-
export declare interface JsonApiExportTemplateOutAttributes {
|
|
58867
|
-
/**
|
|
58868
|
-
* User-facing name of the Slides template.
|
|
58869
|
-
*/
|
|
58870
|
-
'name': string;
|
|
58871
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
58872
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
58968
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
58873
58969
|
}
|
|
58874
58970
|
|
|
58875
|
-
/**
|
|
58876
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
58877
|
-
*/
|
|
58878
|
-
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
58879
|
-
/**
|
|
58880
|
-
* Export types this template applies to.
|
|
58881
|
-
*/
|
|
58882
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
58883
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
58884
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
58885
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
58886
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
58887
|
-
}
|
|
58888
|
-
|
|
58889
|
-
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
58890
|
-
|
|
58891
|
-
/**
|
|
58892
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
58893
|
-
*/
|
|
58894
|
-
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
58895
|
-
/**
|
|
58896
|
-
* Export types this template applies to.
|
|
58897
|
-
*/
|
|
58898
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
58899
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
58900
|
-
}
|
|
58901
|
-
|
|
58902
|
-
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
58903
|
-
|
|
58904
58971
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
58905
58972
|
'data': JsonApiExportTemplateOut;
|
|
58906
58973
|
'links'?: ObjectLinks;
|
|
@@ -58912,7 +58979,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
58912
58979
|
export declare interface JsonApiExportTemplateOutList {
|
|
58913
58980
|
'data': Array<JsonApiExportTemplateOutWithLinks>;
|
|
58914
58981
|
'links'?: ListLinks;
|
|
58915
|
-
'meta'?:
|
|
58982
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58916
58983
|
}
|
|
58917
58984
|
|
|
58918
58985
|
export declare type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
@@ -58926,7 +58993,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
58926
58993
|
* API identifier of an object
|
|
58927
58994
|
*/
|
|
58928
58995
|
'id': string;
|
|
58929
|
-
'attributes':
|
|
58996
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
58930
58997
|
'links'?: ObjectLinks;
|
|
58931
58998
|
}
|
|
58932
58999
|
|
|
@@ -58952,8 +59019,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
58952
59019
|
* User-facing name of the Slides template.
|
|
58953
59020
|
*/
|
|
58954
59021
|
'name'?: string;
|
|
58955
|
-
'dashboardSlidesTemplate'?:
|
|
58956
|
-
'widgetSlidesTemplate'?:
|
|
59022
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
59023
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
58957
59024
|
}
|
|
58958
59025
|
|
|
58959
59026
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -58974,9 +59041,47 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
58974
59041
|
* API identifier of an object
|
|
58975
59042
|
*/
|
|
58976
59043
|
'id'?: string;
|
|
58977
|
-
'attributes':
|
|
59044
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
59045
|
+
}
|
|
59046
|
+
|
|
59047
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
59048
|
+
/**
|
|
59049
|
+
* User-facing name of the Slides template.
|
|
59050
|
+
*/
|
|
59051
|
+
'name': string;
|
|
59052
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
59053
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
59054
|
+
}
|
|
59055
|
+
|
|
59056
|
+
/**
|
|
59057
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
59058
|
+
*/
|
|
59059
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
59060
|
+
/**
|
|
59061
|
+
* Export types this template applies to.
|
|
59062
|
+
*/
|
|
59063
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
59064
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
59065
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
59066
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
59067
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
59068
|
+
}
|
|
59069
|
+
|
|
59070
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
59071
|
+
|
|
59072
|
+
/**
|
|
59073
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
59074
|
+
*/
|
|
59075
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
59076
|
+
/**
|
|
59077
|
+
* Export types this template applies to.
|
|
59078
|
+
*/
|
|
59079
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
59080
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
58978
59081
|
}
|
|
58979
59082
|
|
|
59083
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
59084
|
+
|
|
58980
59085
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
58981
59086
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
58982
59087
|
}
|
|
@@ -59005,7 +59110,7 @@ export declare interface JsonApiFactOut {
|
|
|
59005
59110
|
* API identifier of an object
|
|
59006
59111
|
*/
|
|
59007
59112
|
'id': string;
|
|
59008
|
-
'meta'?:
|
|
59113
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59009
59114
|
'attributes'?: JsonApiFactOutAttributes;
|
|
59010
59115
|
'relationships'?: JsonApiFactOutRelationships;
|
|
59011
59116
|
}
|
|
@@ -59039,36 +59144,15 @@ export declare interface JsonApiFactOutDocument {
|
|
|
59039
59144
|
export declare interface JsonApiFactOutList {
|
|
59040
59145
|
'data': Array<JsonApiFactOutWithLinks>;
|
|
59041
59146
|
'links'?: ListLinks;
|
|
59042
|
-
'meta'?:
|
|
59147
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59043
59148
|
/**
|
|
59044
59149
|
* Included resources
|
|
59045
59150
|
*/
|
|
59046
59151
|
'included'?: Array<JsonApiDatasetOutWithLinks>;
|
|
59047
59152
|
}
|
|
59048
59153
|
|
|
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
59154
|
export declare interface JsonApiFactOutRelationships {
|
|
59067
|
-
'dataset'?:
|
|
59068
|
-
}
|
|
59069
|
-
|
|
59070
|
-
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
59071
|
-
'data': JsonApiDatasetLinkage | null;
|
|
59155
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
59072
59156
|
}
|
|
59073
59157
|
|
|
59074
59158
|
export declare type JsonApiFactOutTypeEnum = 'fact';
|
|
@@ -59082,7 +59166,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
59082
59166
|
* API identifier of an object
|
|
59083
59167
|
*/
|
|
59084
59168
|
'id': string;
|
|
59085
|
-
'meta'?:
|
|
59169
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59086
59170
|
'attributes'?: JsonApiFactOutAttributes;
|
|
59087
59171
|
'relationships'?: JsonApiFactOutRelationships;
|
|
59088
59172
|
'links'?: ObjectLinks;
|
|
@@ -59102,7 +59186,7 @@ export declare interface JsonApiFactPatch {
|
|
|
59102
59186
|
* API identifier of an object
|
|
59103
59187
|
*/
|
|
59104
59188
|
'id': string;
|
|
59105
|
-
'attributes'?:
|
|
59189
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
59106
59190
|
}
|
|
59107
59191
|
|
|
59108
59192
|
export declare interface JsonApiFactPatchDocument {
|
|
@@ -59154,7 +59238,7 @@ export declare interface JsonApiFilterContextOut {
|
|
|
59154
59238
|
* API identifier of an object
|
|
59155
59239
|
*/
|
|
59156
59240
|
'id': string;
|
|
59157
|
-
'meta'?:
|
|
59241
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59158
59242
|
'attributes': JsonApiFilterContextOutAttributes;
|
|
59159
59243
|
'relationships'?: JsonApiFilterContextOutRelationships;
|
|
59160
59244
|
}
|
|
@@ -59190,7 +59274,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
59190
59274
|
export declare interface JsonApiFilterContextOutList {
|
|
59191
59275
|
'data': Array<JsonApiFilterContextOutWithLinks>;
|
|
59192
59276
|
'links'?: ListLinks;
|
|
59193
|
-
'meta'?:
|
|
59277
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59194
59278
|
/**
|
|
59195
59279
|
* Included resources
|
|
59196
59280
|
*/
|
|
@@ -59198,9 +59282,9 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
59198
59282
|
}
|
|
59199
59283
|
|
|
59200
59284
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
59201
|
-
'attributes'?:
|
|
59202
|
-
'datasets'?:
|
|
59203
|
-
'labels'?:
|
|
59285
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
59286
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
59287
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
59204
59288
|
}
|
|
59205
59289
|
|
|
59206
59290
|
export declare type JsonApiFilterContextOutTypeEnum = 'filterContext';
|
|
@@ -59214,7 +59298,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
59214
59298
|
* API identifier of an object
|
|
59215
59299
|
*/
|
|
59216
59300
|
'id': string;
|
|
59217
|
-
'meta'?:
|
|
59301
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59218
59302
|
'attributes': JsonApiFilterContextOutAttributes;
|
|
59219
59303
|
'relationships'?: JsonApiFilterContextOutRelationships;
|
|
59220
59304
|
'links'?: ObjectLinks;
|
|
@@ -59348,7 +59432,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
59348
59432
|
export declare interface JsonApiFilterViewOutList {
|
|
59349
59433
|
'data': Array<JsonApiFilterViewOutWithLinks>;
|
|
59350
59434
|
'links'?: ListLinks;
|
|
59351
|
-
'meta'?:
|
|
59435
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59352
59436
|
/**
|
|
59353
59437
|
* Included resources
|
|
59354
59438
|
*/
|
|
@@ -59356,16 +59440,8 @@ export declare interface JsonApiFilterViewOutList {
|
|
|
59356
59440
|
}
|
|
59357
59441
|
|
|
59358
59442
|
export declare interface JsonApiFilterViewOutRelationships {
|
|
59359
|
-
'analyticalDashboard'?:
|
|
59360
|
-
'user'?:
|
|
59361
|
-
}
|
|
59362
|
-
|
|
59363
|
-
export declare interface JsonApiFilterViewOutRelationshipsAnalyticalDashboard {
|
|
59364
|
-
'data': JsonApiAnalyticalDashboardLinkage | null;
|
|
59365
|
-
}
|
|
59366
|
-
|
|
59367
|
-
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
59368
|
-
'data': JsonApiUserLinkage | null;
|
|
59443
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
59444
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
59369
59445
|
}
|
|
59370
59446
|
|
|
59371
59447
|
export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
|
|
@@ -59444,41 +59520,10 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
59444
59520
|
* API identifier of an object
|
|
59445
59521
|
*/
|
|
59446
59522
|
'id': string;
|
|
59447
|
-
'attributes'?:
|
|
59523
|
+
'attributes'?: JsonApiIdentityProviderInAttributes;
|
|
59448
59524
|
}
|
|
59449
59525
|
|
|
59450
|
-
export declare interface
|
|
59451
|
-
'data': JsonApiIdentityProviderIn;
|
|
59452
|
-
}
|
|
59453
|
-
|
|
59454
|
-
export declare type JsonApiIdentityProviderInTypeEnum = 'identityProvider';
|
|
59455
|
-
|
|
59456
|
-
/**
|
|
59457
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
59458
|
-
*/
|
|
59459
|
-
export declare interface JsonApiIdentityProviderLinkage {
|
|
59460
|
-
'id': string;
|
|
59461
|
-
'type': JsonApiIdentityProviderLinkageTypeEnum;
|
|
59462
|
-
}
|
|
59463
|
-
|
|
59464
|
-
export declare type JsonApiIdentityProviderLinkageTypeEnum = 'identityProvider';
|
|
59465
|
-
|
|
59466
|
-
/**
|
|
59467
|
-
* JSON:API representation of identityProvider entity.
|
|
59468
|
-
*/
|
|
59469
|
-
export declare interface JsonApiIdentityProviderOut {
|
|
59470
|
-
/**
|
|
59471
|
-
* Object type
|
|
59472
|
-
*/
|
|
59473
|
-
'type': JsonApiIdentityProviderOutTypeEnum;
|
|
59474
|
-
/**
|
|
59475
|
-
* API identifier of an object
|
|
59476
|
-
*/
|
|
59477
|
-
'id': string;
|
|
59478
|
-
'attributes'?: JsonApiIdentityProviderOutAttributes;
|
|
59479
|
-
}
|
|
59480
|
-
|
|
59481
|
-
export declare interface JsonApiIdentityProviderOutAttributes {
|
|
59526
|
+
export declare interface JsonApiIdentityProviderInAttributes {
|
|
59482
59527
|
/**
|
|
59483
59528
|
* 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.
|
|
59484
59529
|
*/
|
|
@@ -59489,10 +59534,18 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
59489
59534
|
'customClaimMapping'?: {
|
|
59490
59535
|
[key: string]: string;
|
|
59491
59536
|
};
|
|
59537
|
+
/**
|
|
59538
|
+
* 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.
|
|
59539
|
+
*/
|
|
59540
|
+
'samlMetadata'?: string;
|
|
59492
59541
|
/**
|
|
59493
59542
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59494
59543
|
*/
|
|
59495
59544
|
'oauthClientId'?: string;
|
|
59545
|
+
/**
|
|
59546
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59547
|
+
*/
|
|
59548
|
+
'oauthClientSecret'?: string;
|
|
59496
59549
|
/**
|
|
59497
59550
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59498
59551
|
*/
|
|
@@ -59518,58 +59571,43 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
59518
59571
|
/**
|
|
59519
59572
|
* 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.
|
|
59520
59573
|
*/
|
|
59521
|
-
'idpType'?:
|
|
59574
|
+
'idpType'?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
59522
59575
|
}
|
|
59523
59576
|
|
|
59524
|
-
export declare type
|
|
59577
|
+
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
|
|
59525
59578
|
|
|
59526
|
-
export declare interface
|
|
59527
|
-
'data':
|
|
59528
|
-
'links'?: ObjectLinks;
|
|
59579
|
+
export declare interface JsonApiIdentityProviderInDocument {
|
|
59580
|
+
'data': JsonApiIdentityProviderIn;
|
|
59529
59581
|
}
|
|
59530
59582
|
|
|
59583
|
+
export declare type JsonApiIdentityProviderInTypeEnum = 'identityProvider';
|
|
59584
|
+
|
|
59531
59585
|
/**
|
|
59532
|
-
*
|
|
59586
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
59533
59587
|
*/
|
|
59534
|
-
export declare interface
|
|
59535
|
-
'data': Array<JsonApiIdentityProviderOutWithLinks>;
|
|
59536
|
-
'links'?: ListLinks;
|
|
59537
|
-
'meta'?: JsonApiApiTokenOutListMeta;
|
|
59538
|
-
}
|
|
59539
|
-
|
|
59540
|
-
export declare type JsonApiIdentityProviderOutTypeEnum = 'identityProvider';
|
|
59541
|
-
|
|
59542
|
-
export declare interface JsonApiIdentityProviderOutWithLinks {
|
|
59543
|
-
/**
|
|
59544
|
-
* Object type
|
|
59545
|
-
*/
|
|
59546
|
-
'type': JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
59547
|
-
/**
|
|
59548
|
-
* API identifier of an object
|
|
59549
|
-
*/
|
|
59588
|
+
export declare interface JsonApiIdentityProviderLinkage {
|
|
59550
59589
|
'id': string;
|
|
59551
|
-
'
|
|
59552
|
-
'links'?: ObjectLinks;
|
|
59590
|
+
'type': JsonApiIdentityProviderLinkageTypeEnum;
|
|
59553
59591
|
}
|
|
59554
59592
|
|
|
59555
|
-
export declare type
|
|
59593
|
+
export declare type JsonApiIdentityProviderLinkageTypeEnum = 'identityProvider';
|
|
59556
59594
|
|
|
59557
59595
|
/**
|
|
59558
|
-
* JSON:API representation of
|
|
59596
|
+
* JSON:API representation of identityProvider entity.
|
|
59559
59597
|
*/
|
|
59560
|
-
export declare interface
|
|
59598
|
+
export declare interface JsonApiIdentityProviderOut {
|
|
59561
59599
|
/**
|
|
59562
59600
|
* Object type
|
|
59563
59601
|
*/
|
|
59564
|
-
'type':
|
|
59602
|
+
'type': JsonApiIdentityProviderOutTypeEnum;
|
|
59565
59603
|
/**
|
|
59566
59604
|
* API identifier of an object
|
|
59567
59605
|
*/
|
|
59568
59606
|
'id': string;
|
|
59569
|
-
'attributes'?:
|
|
59607
|
+
'attributes'?: JsonApiIdentityProviderOutAttributes;
|
|
59570
59608
|
}
|
|
59571
59609
|
|
|
59572
|
-
export declare interface
|
|
59610
|
+
export declare interface JsonApiIdentityProviderOutAttributes {
|
|
59573
59611
|
/**
|
|
59574
59612
|
* 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
59613
|
*/
|
|
@@ -59580,18 +59618,10 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
|
59580
59618
|
'customClaimMapping'?: {
|
|
59581
59619
|
[key: string]: string;
|
|
59582
59620
|
};
|
|
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
59621
|
/**
|
|
59588
59622
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59589
59623
|
*/
|
|
59590
59624
|
'oauthClientId'?: string;
|
|
59591
|
-
/**
|
|
59592
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59593
|
-
*/
|
|
59594
|
-
'oauthClientSecret'?: string;
|
|
59595
59625
|
/**
|
|
59596
59626
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59597
59627
|
*/
|
|
@@ -59617,10 +59647,56 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
|
59617
59647
|
/**
|
|
59618
59648
|
* 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
59649
|
*/
|
|
59620
|
-
'idpType'?:
|
|
59650
|
+
'idpType'?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
|
|
59651
|
+
}
|
|
59652
|
+
|
|
59653
|
+
export declare type JsonApiIdentityProviderOutAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
|
|
59654
|
+
|
|
59655
|
+
export declare interface JsonApiIdentityProviderOutDocument {
|
|
59656
|
+
'data': JsonApiIdentityProviderOut;
|
|
59657
|
+
'links'?: ObjectLinks;
|
|
59658
|
+
}
|
|
59659
|
+
|
|
59660
|
+
/**
|
|
59661
|
+
* A JSON:API document with a list of resources
|
|
59662
|
+
*/
|
|
59663
|
+
export declare interface JsonApiIdentityProviderOutList {
|
|
59664
|
+
'data': Array<JsonApiIdentityProviderOutWithLinks>;
|
|
59665
|
+
'links'?: ListLinks;
|
|
59666
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59667
|
+
}
|
|
59668
|
+
|
|
59669
|
+
export declare type JsonApiIdentityProviderOutTypeEnum = 'identityProvider';
|
|
59670
|
+
|
|
59671
|
+
export declare interface JsonApiIdentityProviderOutWithLinks {
|
|
59672
|
+
/**
|
|
59673
|
+
* Object type
|
|
59674
|
+
*/
|
|
59675
|
+
'type': JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
59676
|
+
/**
|
|
59677
|
+
* API identifier of an object
|
|
59678
|
+
*/
|
|
59679
|
+
'id': string;
|
|
59680
|
+
'attributes'?: JsonApiIdentityProviderOutAttributes;
|
|
59681
|
+
'links'?: ObjectLinks;
|
|
59621
59682
|
}
|
|
59622
59683
|
|
|
59623
|
-
export declare type
|
|
59684
|
+
export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = 'identityProvider';
|
|
59685
|
+
|
|
59686
|
+
/**
|
|
59687
|
+
* JSON:API representation of patching identityProvider entity.
|
|
59688
|
+
*/
|
|
59689
|
+
export declare interface JsonApiIdentityProviderPatch {
|
|
59690
|
+
/**
|
|
59691
|
+
* Object type
|
|
59692
|
+
*/
|
|
59693
|
+
'type': JsonApiIdentityProviderPatchTypeEnum;
|
|
59694
|
+
/**
|
|
59695
|
+
* API identifier of an object
|
|
59696
|
+
*/
|
|
59697
|
+
'id': string;
|
|
59698
|
+
'attributes'?: JsonApiIdentityProviderInAttributes;
|
|
59699
|
+
}
|
|
59624
59700
|
|
|
59625
59701
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
59626
59702
|
'data': JsonApiIdentityProviderPatch;
|
|
@@ -59679,7 +59755,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
59679
59755
|
export declare interface JsonApiJwkOutList {
|
|
59680
59756
|
'data': Array<JsonApiJwkOutWithLinks>;
|
|
59681
59757
|
'links'?: ListLinks;
|
|
59682
|
-
'meta'?:
|
|
59758
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59683
59759
|
}
|
|
59684
59760
|
|
|
59685
59761
|
export declare type JsonApiJwkOutTypeEnum = 'jwk';
|
|
@@ -59732,88 +59808,14 @@ export declare interface JsonApiKnowledgeRecommendationIn {
|
|
|
59732
59808
|
* API identifier of an object
|
|
59733
59809
|
*/
|
|
59734
59810
|
'id': string;
|
|
59735
|
-
'attributes':
|
|
59736
|
-
'relationships':
|
|
59737
|
-
}
|
|
59738
|
-
|
|
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;
|
|
59811
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
59812
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
59802
59813
|
}
|
|
59803
59814
|
|
|
59804
|
-
export declare type JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
59805
|
-
|
|
59806
|
-
export declare type JsonApiKnowledgeRecommendationInAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
59807
|
-
|
|
59808
59815
|
export declare interface JsonApiKnowledgeRecommendationInDocument {
|
|
59809
59816
|
'data': JsonApiKnowledgeRecommendationIn;
|
|
59810
59817
|
}
|
|
59811
59818
|
|
|
59812
|
-
export declare interface JsonApiKnowledgeRecommendationInRelationships {
|
|
59813
|
-
'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
59814
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
59815
|
-
}
|
|
59816
|
-
|
|
59817
59819
|
export declare type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
|
|
59818
59820
|
|
|
59819
59821
|
/**
|
|
@@ -59828,7 +59830,7 @@ export declare interface JsonApiKnowledgeRecommendationOut {
|
|
|
59828
59830
|
* API identifier of an object
|
|
59829
59831
|
*/
|
|
59830
59832
|
'id': string;
|
|
59831
|
-
'meta'?:
|
|
59833
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59832
59834
|
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
59833
59835
|
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
59834
59836
|
}
|
|
@@ -59923,7 +59925,7 @@ export declare type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalytica
|
|
|
59923
59925
|
export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
59924
59926
|
'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
|
|
59925
59927
|
'links'?: ListLinks;
|
|
59926
|
-
'meta'?:
|
|
59928
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59927
59929
|
/**
|
|
59928
59930
|
* Included resources
|
|
59929
59931
|
*/
|
|
@@ -59931,12 +59933,8 @@ export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
|
59931
59933
|
}
|
|
59932
59934
|
|
|
59933
59935
|
export declare interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
59934
|
-
'metric'?:
|
|
59935
|
-
'analyticalDashboard'?:
|
|
59936
|
-
}
|
|
59937
|
-
|
|
59938
|
-
export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
59939
|
-
'data': JsonApiMetricLinkage | null;
|
|
59936
|
+
'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
59937
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
59940
59938
|
}
|
|
59941
59939
|
|
|
59942
59940
|
export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
|
|
@@ -59950,7 +59948,7 @@ export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
|
59950
59948
|
* API identifier of an object
|
|
59951
59949
|
*/
|
|
59952
59950
|
'id': string;
|
|
59953
|
-
'meta'?:
|
|
59951
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59954
59952
|
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
59955
59953
|
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
59956
59954
|
'links'?: ObjectLinks;
|
|
@@ -60061,14 +60059,92 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalId {
|
|
|
60061
60059
|
* API identifier of an object
|
|
60062
60060
|
*/
|
|
60063
60061
|
'id'?: string;
|
|
60064
|
-
'attributes':
|
|
60065
|
-
'relationships':
|
|
60062
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
60063
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
60064
|
+
}
|
|
60065
|
+
|
|
60066
|
+
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes {
|
|
60067
|
+
/**
|
|
60068
|
+
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
60069
|
+
*/
|
|
60070
|
+
'title': string;
|
|
60071
|
+
/**
|
|
60072
|
+
* Description of the recommendation
|
|
60073
|
+
*/
|
|
60074
|
+
'description'?: string;
|
|
60075
|
+
'tags'?: Array<string>;
|
|
60076
|
+
'areRelationsValid'?: boolean;
|
|
60077
|
+
/**
|
|
60078
|
+
* Human-readable title of the metric (denormalized for display)
|
|
60079
|
+
*/
|
|
60080
|
+
'metricTitle'?: string;
|
|
60081
|
+
/**
|
|
60082
|
+
* Direction of the metric change
|
|
60083
|
+
*/
|
|
60084
|
+
'direction': JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum;
|
|
60085
|
+
/**
|
|
60086
|
+
* Time period for comparison
|
|
60087
|
+
*/
|
|
60088
|
+
'comparisonType': JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum;
|
|
60089
|
+
/**
|
|
60090
|
+
* ID of the widget where the anomaly was detected
|
|
60091
|
+
*/
|
|
60092
|
+
'widgetId'?: string;
|
|
60093
|
+
/**
|
|
60094
|
+
* Name of the widget where the anomaly was detected
|
|
60095
|
+
*/
|
|
60096
|
+
'widgetName'?: string;
|
|
60097
|
+
/**
|
|
60098
|
+
* Confidence score (0.0 to 1.0)
|
|
60099
|
+
*/
|
|
60100
|
+
'confidence'?: any;
|
|
60101
|
+
/**
|
|
60102
|
+
* Structured recommendations data as JSON
|
|
60103
|
+
*/
|
|
60104
|
+
'recommendations'?: object;
|
|
60105
|
+
/**
|
|
60106
|
+
* Number of source documents used for generation
|
|
60107
|
+
*/
|
|
60108
|
+
'sourceCount'?: number;
|
|
60109
|
+
/**
|
|
60110
|
+
* Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
|
|
60111
|
+
*/
|
|
60112
|
+
'referencePeriod'?: string;
|
|
60113
|
+
/**
|
|
60114
|
+
* Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
|
|
60115
|
+
*/
|
|
60116
|
+
'analyzedPeriod'?: string;
|
|
60117
|
+
/**
|
|
60118
|
+
* Metric value in the reference period
|
|
60119
|
+
*/
|
|
60120
|
+
'referenceValue'?: any;
|
|
60121
|
+
/**
|
|
60122
|
+
* Metric value in the analyzed period (the observed value that triggered the anomaly)
|
|
60123
|
+
*/
|
|
60124
|
+
'analyzedValue'?: any;
|
|
60125
|
+
/**
|
|
60126
|
+
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
60127
|
+
*/
|
|
60128
|
+
'analyticalDashboardTitle'?: string;
|
|
60066
60129
|
}
|
|
60067
60130
|
|
|
60131
|
+
export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
60132
|
+
|
|
60133
|
+
export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
60134
|
+
|
|
60068
60135
|
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
60069
60136
|
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
60070
60137
|
}
|
|
60071
60138
|
|
|
60139
|
+
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
60140
|
+
'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
60141
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
60142
|
+
}
|
|
60143
|
+
|
|
60144
|
+
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
60145
|
+
'data': JsonApiMetricLinkage | null;
|
|
60146
|
+
}
|
|
60147
|
+
|
|
60072
60148
|
export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
60073
60149
|
|
|
60074
60150
|
/**
|
|
@@ -60093,7 +60169,7 @@ export declare interface JsonApiLabelOut {
|
|
|
60093
60169
|
* API identifier of an object
|
|
60094
60170
|
*/
|
|
60095
60171
|
'id': string;
|
|
60096
|
-
'meta'?:
|
|
60172
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60097
60173
|
'attributes'?: JsonApiLabelOutAttributes;
|
|
60098
60174
|
'relationships'?: JsonApiLabelOutRelationships;
|
|
60099
60175
|
}
|
|
@@ -60146,7 +60222,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
60146
60222
|
export declare interface JsonApiLabelOutList {
|
|
60147
60223
|
'data': Array<JsonApiLabelOutWithLinks>;
|
|
60148
60224
|
'links'?: ListLinks;
|
|
60149
|
-
'meta'?:
|
|
60225
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60150
60226
|
/**
|
|
60151
60227
|
* Included resources
|
|
60152
60228
|
*/
|
|
@@ -60172,7 +60248,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
60172
60248
|
* API identifier of an object
|
|
60173
60249
|
*/
|
|
60174
60250
|
'id': string;
|
|
60175
|
-
'meta'?:
|
|
60251
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60176
60252
|
'attributes'?: JsonApiLabelOutAttributes;
|
|
60177
60253
|
'relationships'?: JsonApiLabelOutRelationships;
|
|
60178
60254
|
'links'?: ObjectLinks;
|
|
@@ -60192,13 +60268,7 @@ export declare interface JsonApiLabelPatch {
|
|
|
60192
60268
|
* API identifier of an object
|
|
60193
60269
|
*/
|
|
60194
60270
|
'id': string;
|
|
60195
|
-
'attributes'?:
|
|
60196
|
-
}
|
|
60197
|
-
|
|
60198
|
-
export declare interface JsonApiLabelPatchAttributes {
|
|
60199
|
-
'title'?: string;
|
|
60200
|
-
'description'?: string;
|
|
60201
|
-
'tags'?: Array<string>;
|
|
60271
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
60202
60272
|
}
|
|
60203
60273
|
|
|
60204
60274
|
export declare interface JsonApiLabelPatchDocument {
|
|
@@ -60208,7 +60278,7 @@ export declare interface JsonApiLabelPatchDocument {
|
|
|
60208
60278
|
export declare type JsonApiLabelPatchTypeEnum = 'label';
|
|
60209
60279
|
|
|
60210
60280
|
/**
|
|
60211
|
-
*
|
|
60281
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60212
60282
|
*/
|
|
60213
60283
|
export declare interface JsonApiLlmEndpointIn {
|
|
60214
60284
|
/**
|
|
@@ -60229,6 +60299,7 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
60229
60299
|
'title': string;
|
|
60230
60300
|
/**
|
|
60231
60301
|
* LLM Provider.
|
|
60302
|
+
* @deprecated
|
|
60232
60303
|
*/
|
|
60233
60304
|
'provider'?: JsonApiLlmEndpointInAttributesProviderEnum;
|
|
60234
60305
|
/**
|
|
@@ -60252,13 +60323,16 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
60252
60323
|
export declare type JsonApiLlmEndpointInAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60253
60324
|
|
|
60254
60325
|
export declare interface JsonApiLlmEndpointInDocument {
|
|
60326
|
+
/**
|
|
60327
|
+
* @deprecated
|
|
60328
|
+
*/
|
|
60255
60329
|
'data': JsonApiLlmEndpointIn;
|
|
60256
60330
|
}
|
|
60257
60331
|
|
|
60258
60332
|
export declare type JsonApiLlmEndpointInTypeEnum = 'llmEndpoint';
|
|
60259
60333
|
|
|
60260
60334
|
/**
|
|
60261
|
-
*
|
|
60335
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60262
60336
|
*/
|
|
60263
60337
|
export declare interface JsonApiLlmEndpointOut {
|
|
60264
60338
|
/**
|
|
@@ -60279,6 +60353,7 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
60279
60353
|
'title': string;
|
|
60280
60354
|
/**
|
|
60281
60355
|
* LLM Provider.
|
|
60356
|
+
* @deprecated
|
|
60282
60357
|
*/
|
|
60283
60358
|
'provider'?: JsonApiLlmEndpointOutAttributesProviderEnum;
|
|
60284
60359
|
/**
|
|
@@ -60298,6 +60373,9 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
60298
60373
|
export declare type JsonApiLlmEndpointOutAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60299
60374
|
|
|
60300
60375
|
export declare interface JsonApiLlmEndpointOutDocument {
|
|
60376
|
+
/**
|
|
60377
|
+
* @deprecated
|
|
60378
|
+
*/
|
|
60301
60379
|
'data': JsonApiLlmEndpointOut;
|
|
60302
60380
|
'links'?: ObjectLinks;
|
|
60303
60381
|
}
|
|
@@ -60308,7 +60386,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
60308
60386
|
export declare interface JsonApiLlmEndpointOutList {
|
|
60309
60387
|
'data': Array<JsonApiLlmEndpointOutWithLinks>;
|
|
60310
60388
|
'links'?: ListLinks;
|
|
60311
|
-
'meta'?:
|
|
60389
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60312
60390
|
}
|
|
60313
60391
|
|
|
60314
60392
|
export declare type JsonApiLlmEndpointOutTypeEnum = 'llmEndpoint';
|
|
@@ -60329,7 +60407,7 @@ export declare interface JsonApiLlmEndpointOutWithLinks {
|
|
|
60329
60407
|
export declare type JsonApiLlmEndpointOutWithLinksTypeEnum = 'llmEndpoint';
|
|
60330
60408
|
|
|
60331
60409
|
/**
|
|
60332
|
-
*
|
|
60410
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60333
60411
|
*/
|
|
60334
60412
|
export declare interface JsonApiLlmEndpointPatch {
|
|
60335
60413
|
/**
|
|
@@ -60350,6 +60428,7 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
60350
60428
|
'title'?: string;
|
|
60351
60429
|
/**
|
|
60352
60430
|
* LLM Provider.
|
|
60431
|
+
* @deprecated
|
|
60353
60432
|
*/
|
|
60354
60433
|
'provider'?: JsonApiLlmEndpointPatchAttributesProviderEnum;
|
|
60355
60434
|
/**
|
|
@@ -60373,6 +60452,9 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
60373
60452
|
export declare type JsonApiLlmEndpointPatchAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60374
60453
|
|
|
60375
60454
|
export declare interface JsonApiLlmEndpointPatchDocument {
|
|
60455
|
+
/**
|
|
60456
|
+
* @deprecated
|
|
60457
|
+
*/
|
|
60376
60458
|
'data': JsonApiLlmEndpointPatch;
|
|
60377
60459
|
}
|
|
60378
60460
|
|
|
@@ -60390,31 +60472,10 @@ export declare interface JsonApiLlmProviderIn {
|
|
|
60390
60472
|
* API identifier of an object
|
|
60391
60473
|
*/
|
|
60392
60474
|
'id': string;
|
|
60393
|
-
'attributes'?:
|
|
60394
|
-
}
|
|
60395
|
-
|
|
60396
|
-
export declare interface JsonApiLlmProviderInDocument {
|
|
60397
|
-
'data': JsonApiLlmProviderIn;
|
|
60398
|
-
}
|
|
60399
|
-
|
|
60400
|
-
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
60401
|
-
|
|
60402
|
-
/**
|
|
60403
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
60404
|
-
*/
|
|
60405
|
-
export declare interface JsonApiLlmProviderOut {
|
|
60406
|
-
/**
|
|
60407
|
-
* Object type
|
|
60408
|
-
*/
|
|
60409
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
60410
|
-
/**
|
|
60411
|
-
* API identifier of an object
|
|
60412
|
-
*/
|
|
60413
|
-
'id': string;
|
|
60414
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
60475
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
60415
60476
|
}
|
|
60416
60477
|
|
|
60417
|
-
export declare interface
|
|
60478
|
+
export declare interface JsonApiLlmProviderInAttributes {
|
|
60418
60479
|
'name'?: string | null;
|
|
60419
60480
|
/**
|
|
60420
60481
|
* Description of the LLM Provider.
|
|
@@ -60424,17 +60485,17 @@ export declare interface JsonApiLlmProviderOutAttributes {
|
|
|
60424
60485
|
* Required ID of the default model to use from the models list.
|
|
60425
60486
|
*/
|
|
60426
60487
|
'defaultModelId'?: string | null;
|
|
60427
|
-
'providerConfig'?:
|
|
60488
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
60428
60489
|
/**
|
|
60429
60490
|
* List of LLM models available for this provider.
|
|
60430
60491
|
*/
|
|
60431
|
-
'models'?: Array<
|
|
60492
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
60432
60493
|
}
|
|
60433
60494
|
|
|
60434
60495
|
/**
|
|
60435
60496
|
* LLM Model configuration (id, family) within a provider.
|
|
60436
60497
|
*/
|
|
60437
|
-
export declare interface
|
|
60498
|
+
export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
60438
60499
|
/**
|
|
60439
60500
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
60440
60501
|
*/
|
|
@@ -60442,16 +60503,37 @@ export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
60442
60503
|
/**
|
|
60443
60504
|
* Family of LLM models.
|
|
60444
60505
|
*/
|
|
60445
|
-
'family':
|
|
60506
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
60446
60507
|
}
|
|
60447
60508
|
|
|
60448
|
-
export declare type
|
|
60509
|
+
export declare type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
60449
60510
|
|
|
60450
60511
|
/**
|
|
60451
|
-
* @type
|
|
60512
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
60452
60513
|
* Provider-specific configuration including authentication.
|
|
60453
60514
|
*/
|
|
60454
|
-
export declare type
|
|
60515
|
+
export declare type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
60516
|
+
|
|
60517
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
60518
|
+
'data': JsonApiLlmProviderIn;
|
|
60519
|
+
}
|
|
60520
|
+
|
|
60521
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
60522
|
+
|
|
60523
|
+
/**
|
|
60524
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
60525
|
+
*/
|
|
60526
|
+
export declare interface JsonApiLlmProviderOut {
|
|
60527
|
+
/**
|
|
60528
|
+
* Object type
|
|
60529
|
+
*/
|
|
60530
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
60531
|
+
/**
|
|
60532
|
+
* API identifier of an object
|
|
60533
|
+
*/
|
|
60534
|
+
'id': string;
|
|
60535
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
60536
|
+
}
|
|
60455
60537
|
|
|
60456
60538
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
60457
60539
|
'data': JsonApiLlmProviderOut;
|
|
@@ -60464,7 +60546,7 @@ export declare interface JsonApiLlmProviderOutDocument {
|
|
|
60464
60546
|
export declare interface JsonApiLlmProviderOutList {
|
|
60465
60547
|
'data': Array<JsonApiLlmProviderOutWithLinks>;
|
|
60466
60548
|
'links'?: ListLinks;
|
|
60467
|
-
'meta'?:
|
|
60549
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60468
60550
|
}
|
|
60469
60551
|
|
|
60470
60552
|
export declare type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
@@ -60478,7 +60560,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
60478
60560
|
* API identifier of an object
|
|
60479
60561
|
*/
|
|
60480
60562
|
'id': string;
|
|
60481
|
-
'attributes'?:
|
|
60563
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
60482
60564
|
'links'?: ObjectLinks;
|
|
60483
60565
|
}
|
|
60484
60566
|
|
|
@@ -60496,7 +60578,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
60496
60578
|
* API identifier of an object
|
|
60497
60579
|
*/
|
|
60498
60580
|
'id': string;
|
|
60499
|
-
'attributes'?:
|
|
60581
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
60500
60582
|
}
|
|
60501
60583
|
|
|
60502
60584
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -60517,34 +60599,9 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
60517
60599
|
* API identifier of an object
|
|
60518
60600
|
*/
|
|
60519
60601
|
'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;
|
|
60602
|
+
'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
|
|
60544
60603
|
}
|
|
60545
60604
|
|
|
60546
|
-
export declare type JsonApiMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
60547
|
-
|
|
60548
60605
|
export declare interface JsonApiMemoryItemInDocument {
|
|
60549
60606
|
'data': JsonApiMemoryItemIn;
|
|
60550
60607
|
}
|
|
@@ -60563,7 +60620,7 @@ export declare interface JsonApiMemoryItemOut {
|
|
|
60563
60620
|
* API identifier of an object
|
|
60564
60621
|
*/
|
|
60565
60622
|
'id': string;
|
|
60566
|
-
'meta'?:
|
|
60623
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60567
60624
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
60568
60625
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
60569
60626
|
}
|
|
@@ -60616,7 +60673,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
60616
60673
|
export declare interface JsonApiMemoryItemOutList {
|
|
60617
60674
|
'data': Array<JsonApiMemoryItemOutWithLinks>;
|
|
60618
60675
|
'links'?: ListLinks;
|
|
60619
|
-
'meta'?:
|
|
60676
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60620
60677
|
/**
|
|
60621
60678
|
* Included resources
|
|
60622
60679
|
*/
|
|
@@ -60634,7 +60691,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
|
|
|
60634
60691
|
* API identifier of an object
|
|
60635
60692
|
*/
|
|
60636
60693
|
'id': string;
|
|
60637
|
-
'meta'?:
|
|
60694
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60638
60695
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
60639
60696
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
60640
60697
|
'links'?: ObjectLinks;
|
|
@@ -60700,9 +60757,34 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
60700
60757
|
* API identifier of an object
|
|
60701
60758
|
*/
|
|
60702
60759
|
'id'?: string;
|
|
60703
|
-
'attributes':
|
|
60760
|
+
'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
|
|
60761
|
+
}
|
|
60762
|
+
|
|
60763
|
+
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
60764
|
+
'title'?: string;
|
|
60765
|
+
'description'?: string;
|
|
60766
|
+
'tags'?: Array<string>;
|
|
60767
|
+
'areRelationsValid'?: boolean;
|
|
60768
|
+
/**
|
|
60769
|
+
* Strategy defining when the memory item should be applied
|
|
60770
|
+
*/
|
|
60771
|
+
'strategy': JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
60772
|
+
/**
|
|
60773
|
+
* The text that will be injected into the system prompt
|
|
60774
|
+
*/
|
|
60775
|
+
'instruction': string;
|
|
60776
|
+
/**
|
|
60777
|
+
* Set of unique strings used for semantic similarity filtering
|
|
60778
|
+
*/
|
|
60779
|
+
'keywords'?: Array<string>;
|
|
60780
|
+
/**
|
|
60781
|
+
* Whether memory item is disabled
|
|
60782
|
+
*/
|
|
60783
|
+
'isDisabled'?: boolean;
|
|
60704
60784
|
}
|
|
60705
60785
|
|
|
60786
|
+
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
60787
|
+
|
|
60706
60788
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
60707
60789
|
'data': JsonApiMemoryItemPostOptionalId;
|
|
60708
60790
|
}
|
|
@@ -60752,7 +60834,7 @@ export declare interface JsonApiMetricOut {
|
|
|
60752
60834
|
* API identifier of an object
|
|
60753
60835
|
*/
|
|
60754
60836
|
'id': string;
|
|
60755
|
-
'meta'?:
|
|
60837
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60756
60838
|
'attributes': JsonApiMetricOutAttributes;
|
|
60757
60839
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
60758
60840
|
}
|
|
@@ -60809,63 +60891,36 @@ export declare interface JsonApiMetricOutDocument {
|
|
|
60809
60891
|
/**
|
|
60810
60892
|
* Included resources
|
|
60811
60893
|
*/
|
|
60812
|
-
'included'?: Array<
|
|
60894
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
60813
60895
|
}
|
|
60814
60896
|
|
|
60897
|
+
/**
|
|
60898
|
+
* @type JsonApiMetricOutIncludes
|
|
60899
|
+
*/
|
|
60900
|
+
export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
60901
|
+
|
|
60815
60902
|
/**
|
|
60816
60903
|
* A JSON:API document with a list of resources
|
|
60817
60904
|
*/
|
|
60818
60905
|
export declare interface JsonApiMetricOutList {
|
|
60819
60906
|
'data': Array<JsonApiMetricOutWithLinks>;
|
|
60820
60907
|
'links'?: ListLinks;
|
|
60821
|
-
'meta'?:
|
|
60908
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60822
60909
|
/**
|
|
60823
60910
|
* Included resources
|
|
60824
60911
|
*/
|
|
60825
|
-
'included'?: Array<
|
|
60912
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
60826
60913
|
}
|
|
60827
60914
|
|
|
60828
60915
|
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>;
|
|
60916
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60917
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60918
|
+
'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60919
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
60920
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
60921
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
60922
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
60923
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
60869
60924
|
}
|
|
60870
60925
|
|
|
60871
60926
|
export declare type JsonApiMetricOutTypeEnum = 'metric';
|
|
@@ -60879,7 +60934,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
60879
60934
|
* API identifier of an object
|
|
60880
60935
|
*/
|
|
60881
60936
|
'id': string;
|
|
60882
|
-
'meta'?:
|
|
60937
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60883
60938
|
'attributes': JsonApiMetricOutAttributes;
|
|
60884
60939
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
60885
60940
|
'links'?: ObjectLinks;
|
|
@@ -60989,7 +61044,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
60989
61044
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
60990
61045
|
'data': Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
60991
61046
|
'links'?: ListLinks;
|
|
60992
|
-
'meta'?:
|
|
61047
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60993
61048
|
}
|
|
60994
61049
|
|
|
60995
61050
|
export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = 'notificationChannelIdentifier';
|
|
@@ -61021,7 +61076,7 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
61021
61076
|
* API identifier of an object
|
|
61022
61077
|
*/
|
|
61023
61078
|
'id': string;
|
|
61024
|
-
'attributes'?:
|
|
61079
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61025
61080
|
}
|
|
61026
61081
|
|
|
61027
61082
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
@@ -61107,7 +61162,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
61107
61162
|
export declare interface JsonApiNotificationChannelOutList {
|
|
61108
61163
|
'data': Array<JsonApiNotificationChannelOutWithLinks>;
|
|
61109
61164
|
'links'?: ListLinks;
|
|
61110
|
-
'meta'?:
|
|
61165
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61111
61166
|
}
|
|
61112
61167
|
|
|
61113
61168
|
export declare type JsonApiNotificationChannelOutTypeEnum = 'notificationChannel';
|
|
@@ -61139,10 +61194,31 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
61139
61194
|
* API identifier of an object
|
|
61140
61195
|
*/
|
|
61141
61196
|
'id': string;
|
|
61142
|
-
'attributes'?:
|
|
61197
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61198
|
+
}
|
|
61199
|
+
|
|
61200
|
+
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
61201
|
+
'data': JsonApiNotificationChannelPatch;
|
|
61202
|
+
}
|
|
61203
|
+
|
|
61204
|
+
export declare type JsonApiNotificationChannelPatchTypeEnum = 'notificationChannel';
|
|
61205
|
+
|
|
61206
|
+
/**
|
|
61207
|
+
* JSON:API representation of notificationChannel entity.
|
|
61208
|
+
*/
|
|
61209
|
+
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
61210
|
+
/**
|
|
61211
|
+
* Object type
|
|
61212
|
+
*/
|
|
61213
|
+
'type': JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
61214
|
+
/**
|
|
61215
|
+
* API identifier of an object
|
|
61216
|
+
*/
|
|
61217
|
+
'id'?: string;
|
|
61218
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61143
61219
|
}
|
|
61144
61220
|
|
|
61145
|
-
export declare interface
|
|
61221
|
+
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
61146
61222
|
'name'?: string | null;
|
|
61147
61223
|
'description'?: string | null;
|
|
61148
61224
|
'destination'?: JsonApiNotificationChannelOutAttributesDestination;
|
|
@@ -61153,7 +61229,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
61153
61229
|
/**
|
|
61154
61230
|
* 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
61231
|
*/
|
|
61156
|
-
'dashboardLinkVisibility'?:
|
|
61232
|
+
'dashboardLinkVisibility'?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
61157
61233
|
/**
|
|
61158
61234
|
* 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
61235
|
*/
|
|
@@ -61161,39 +61237,18 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
61161
61237
|
/**
|
|
61162
61238
|
* 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
61239
|
*/
|
|
61164
|
-
'allowedRecipients'?:
|
|
61240
|
+
'allowedRecipients'?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
61165
61241
|
/**
|
|
61166
61242
|
* 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
61243
|
*/
|
|
61168
|
-
'inPlatformNotification'?:
|
|
61244
|
+
'inPlatformNotification'?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
61169
61245
|
}
|
|
61170
61246
|
|
|
61171
|
-
export declare type
|
|
61247
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
|
|
61172
61248
|
|
|
61173
|
-
export declare type
|
|
61249
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
61174
61250
|
|
|
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
|
-
}
|
|
61251
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
61197
61252
|
|
|
61198
61253
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
61199
61254
|
'data': JsonApiNotificationChannelPostOptionalId;
|
|
@@ -61213,14 +61268,37 @@ export declare interface JsonApiOrganizationIn {
|
|
|
61213
61268
|
* API identifier of an object
|
|
61214
61269
|
*/
|
|
61215
61270
|
'id': string;
|
|
61216
|
-
'attributes'?:
|
|
61217
|
-
'relationships'?:
|
|
61271
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
61272
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
61273
|
+
}
|
|
61274
|
+
|
|
61275
|
+
export declare interface JsonApiOrganizationInAttributes {
|
|
61276
|
+
'name'?: string | null;
|
|
61277
|
+
'hostname'?: string;
|
|
61278
|
+
'allowedOrigins'?: Array<string>;
|
|
61279
|
+
/**
|
|
61280
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
61281
|
+
* @deprecated
|
|
61282
|
+
*/
|
|
61283
|
+
'earlyAccess'?: string | null;
|
|
61284
|
+
/**
|
|
61285
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
61286
|
+
*/
|
|
61287
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
61218
61288
|
}
|
|
61219
61289
|
|
|
61220
61290
|
export declare interface JsonApiOrganizationInDocument {
|
|
61221
61291
|
'data': JsonApiOrganizationIn;
|
|
61222
61292
|
}
|
|
61223
61293
|
|
|
61294
|
+
export declare interface JsonApiOrganizationInRelationships {
|
|
61295
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
61296
|
+
}
|
|
61297
|
+
|
|
61298
|
+
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
61299
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
61300
|
+
}
|
|
61301
|
+
|
|
61224
61302
|
export declare type JsonApiOrganizationInTypeEnum = 'organization';
|
|
61225
61303
|
|
|
61226
61304
|
/**
|
|
@@ -61295,9 +61373,17 @@ export declare interface JsonApiOrganizationOutMeta {
|
|
|
61295
61373
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
|
|
61296
61374
|
|
|
61297
61375
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
61298
|
-
'bootstrapUser'?:
|
|
61299
|
-
'bootstrapUserGroup'?:
|
|
61300
|
-
'identityProvider'?:
|
|
61376
|
+
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61377
|
+
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61378
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
61379
|
+
}
|
|
61380
|
+
|
|
61381
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
61382
|
+
'data': JsonApiUserLinkage | null;
|
|
61383
|
+
}
|
|
61384
|
+
|
|
61385
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
61386
|
+
'data': JsonApiUserGroupLinkage | null;
|
|
61301
61387
|
}
|
|
61302
61388
|
|
|
61303
61389
|
export declare type JsonApiOrganizationOutTypeEnum = 'organization';
|
|
@@ -61314,37 +61400,14 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
61314
61400
|
* API identifier of an object
|
|
61315
61401
|
*/
|
|
61316
61402
|
'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;
|
|
61403
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
61404
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
61334
61405
|
}
|
|
61335
61406
|
|
|
61336
61407
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
61337
61408
|
'data': JsonApiOrganizationPatch;
|
|
61338
61409
|
}
|
|
61339
61410
|
|
|
61340
|
-
export declare interface JsonApiOrganizationPatchRelationships {
|
|
61341
|
-
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
61342
|
-
}
|
|
61343
|
-
|
|
61344
|
-
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
61345
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
61346
|
-
}
|
|
61347
|
-
|
|
61348
61411
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
61349
61412
|
|
|
61350
61413
|
/**
|
|
@@ -61394,7 +61457,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
61394
61457
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
61395
61458
|
'data': Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
61396
61459
|
'links'?: ListLinks;
|
|
61397
|
-
'meta'?:
|
|
61460
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61398
61461
|
}
|
|
61399
61462
|
|
|
61400
61463
|
export declare type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
|
|
@@ -61447,7 +61510,7 @@ export declare interface JsonApiThemeIn {
|
|
|
61447
61510
|
* API identifier of an object
|
|
61448
61511
|
*/
|
|
61449
61512
|
'id': string;
|
|
61450
|
-
'attributes':
|
|
61513
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
61451
61514
|
}
|
|
61452
61515
|
|
|
61453
61516
|
export declare interface JsonApiThemeInDocument {
|
|
@@ -61468,7 +61531,7 @@ export declare interface JsonApiThemeOut {
|
|
|
61468
61531
|
* API identifier of an object
|
|
61469
61532
|
*/
|
|
61470
61533
|
'id': string;
|
|
61471
|
-
'attributes':
|
|
61534
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
61472
61535
|
}
|
|
61473
61536
|
|
|
61474
61537
|
export declare interface JsonApiThemeOutDocument {
|
|
@@ -61482,7 +61545,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
61482
61545
|
export declare interface JsonApiThemeOutList {
|
|
61483
61546
|
'data': Array<JsonApiThemeOutWithLinks>;
|
|
61484
61547
|
'links'?: ListLinks;
|
|
61485
|
-
'meta'?:
|
|
61548
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61486
61549
|
}
|
|
61487
61550
|
|
|
61488
61551
|
export declare type JsonApiThemeOutTypeEnum = 'theme';
|
|
@@ -61496,7 +61559,7 @@ export declare interface JsonApiThemeOutWithLinks {
|
|
|
61496
61559
|
* API identifier of an object
|
|
61497
61560
|
*/
|
|
61498
61561
|
'id': string;
|
|
61499
|
-
'attributes':
|
|
61562
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
61500
61563
|
'links'?: ObjectLinks;
|
|
61501
61564
|
}
|
|
61502
61565
|
|
|
@@ -61557,7 +61620,7 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
61557
61620
|
* API identifier of an object
|
|
61558
61621
|
*/
|
|
61559
61622
|
'id': string;
|
|
61560
|
-
'meta'?:
|
|
61623
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
61561
61624
|
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
61562
61625
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
61563
61626
|
}
|
|
@@ -61582,7 +61645,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
61582
61645
|
export declare interface JsonApiUserDataFilterOutList {
|
|
61583
61646
|
'data': Array<JsonApiUserDataFilterOutWithLinks>;
|
|
61584
61647
|
'links'?: ListLinks;
|
|
61585
|
-
'meta'?:
|
|
61648
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61586
61649
|
/**
|
|
61587
61650
|
* Included resources
|
|
61588
61651
|
*/
|
|
@@ -61590,13 +61653,13 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
61590
61653
|
}
|
|
61591
61654
|
|
|
61592
61655
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
61593
|
-
'user'?:
|
|
61594
|
-
'userGroup'?:
|
|
61595
|
-
'facts'?:
|
|
61596
|
-
'attributes'?:
|
|
61597
|
-
'labels'?:
|
|
61598
|
-
'metrics'?:
|
|
61599
|
-
'datasets'?:
|
|
61656
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61657
|
+
'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61658
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
61659
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
61660
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
61661
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
61662
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
61600
61663
|
}
|
|
61601
61664
|
|
|
61602
61665
|
export declare type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
|
|
@@ -61610,7 +61673,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
61610
61673
|
* API identifier of an object
|
|
61611
61674
|
*/
|
|
61612
61675
|
'id': string;
|
|
61613
|
-
'meta'?:
|
|
61676
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
61614
61677
|
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
61615
61678
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
61616
61679
|
'links'?: ObjectLinks;
|
|
@@ -61677,12 +61740,8 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
61677
61740
|
}
|
|
61678
61741
|
|
|
61679
61742
|
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
61680
|
-
'user'?:
|
|
61681
|
-
'userGroup'?:
|
|
61682
|
-
}
|
|
61683
|
-
|
|
61684
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
|
|
61685
|
-
'data': JsonApiUserGroupLinkage | null;
|
|
61743
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61744
|
+
'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61686
61745
|
}
|
|
61687
61746
|
|
|
61688
61747
|
export declare type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
|
|
@@ -61754,7 +61813,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
61754
61813
|
export declare interface JsonApiUserGroupOutList {
|
|
61755
61814
|
'data': Array<JsonApiUserGroupOutWithLinks>;
|
|
61756
61815
|
'links'?: ListLinks;
|
|
61757
|
-
'meta'?:
|
|
61816
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61758
61817
|
/**
|
|
61759
61818
|
* Included resources
|
|
61760
61819
|
*/
|
|
@@ -61847,7 +61906,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
61847
61906
|
export declare interface JsonApiUserIdentifierOutList {
|
|
61848
61907
|
'data': Array<JsonApiUserIdentifierOutWithLinks>;
|
|
61849
61908
|
'links'?: ListLinks;
|
|
61850
|
-
'meta'?:
|
|
61909
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61851
61910
|
}
|
|
61852
61911
|
|
|
61853
61912
|
export declare type JsonApiUserIdentifierOutTypeEnum = 'userIdentifier';
|
|
@@ -61937,7 +61996,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
61937
61996
|
export declare interface JsonApiUserOutList {
|
|
61938
61997
|
'data': Array<JsonApiUserOutWithLinks>;
|
|
61939
61998
|
'links'?: ListLinks;
|
|
61940
|
-
'meta'?:
|
|
61999
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61941
62000
|
/**
|
|
61942
62001
|
* Included resources
|
|
61943
62002
|
*/
|
|
@@ -62052,7 +62111,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
62052
62111
|
export declare interface JsonApiUserSettingOutList {
|
|
62053
62112
|
'data': Array<JsonApiUserSettingOutWithLinks>;
|
|
62054
62113
|
'links'?: ListLinks;
|
|
62055
|
-
'meta'?:
|
|
62114
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62056
62115
|
}
|
|
62057
62116
|
|
|
62058
62117
|
export declare type JsonApiUserSettingOutTypeEnum = 'userSetting';
|
|
@@ -62084,19 +62143,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
62084
62143
|
* API identifier of an object
|
|
62085
62144
|
*/
|
|
62086
62145
|
'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;
|
|
62146
|
+
'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
62100
62147
|
}
|
|
62101
62148
|
|
|
62102
62149
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -62127,7 +62174,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
62127
62174
|
* API identifier of an object
|
|
62128
62175
|
*/
|
|
62129
62176
|
'id': string;
|
|
62130
|
-
'meta'?:
|
|
62177
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62131
62178
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
62132
62179
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
62133
62180
|
}
|
|
@@ -62172,25 +62219,20 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
62172
62219
|
/**
|
|
62173
62220
|
* Included resources
|
|
62174
62221
|
*/
|
|
62175
|
-
'included'?: Array<
|
|
62222
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
62176
62223
|
}
|
|
62177
62224
|
|
|
62178
|
-
/**
|
|
62179
|
-
* @type JsonApiVisualizationObjectOutIncludes
|
|
62180
|
-
*/
|
|
62181
|
-
export declare type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
62182
|
-
|
|
62183
62225
|
/**
|
|
62184
62226
|
* A JSON:API document with a list of resources
|
|
62185
62227
|
*/
|
|
62186
62228
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
62187
62229
|
'data': Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
62188
62230
|
'links'?: ListLinks;
|
|
62189
|
-
'meta'?:
|
|
62231
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62190
62232
|
/**
|
|
62191
62233
|
* Included resources
|
|
62192
62234
|
*/
|
|
62193
|
-
'included'?: Array<
|
|
62235
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
62194
62236
|
}
|
|
62195
62237
|
|
|
62196
62238
|
export declare type JsonApiVisualizationObjectOutTypeEnum = 'visualizationObject';
|
|
@@ -62204,7 +62246,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
62204
62246
|
* API identifier of an object
|
|
62205
62247
|
*/
|
|
62206
62248
|
'id': string;
|
|
62207
|
-
'meta'?:
|
|
62249
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62208
62250
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
62209
62251
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
62210
62252
|
'links'?: ObjectLinks;
|
|
@@ -62257,7 +62299,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
62257
62299
|
* API identifier of an object
|
|
62258
62300
|
*/
|
|
62259
62301
|
'id'?: string;
|
|
62260
|
-
'attributes':
|
|
62302
|
+
'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
62303
|
+
}
|
|
62304
|
+
|
|
62305
|
+
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
62306
|
+
'title'?: string;
|
|
62307
|
+
'description'?: string;
|
|
62308
|
+
'tags'?: Array<string>;
|
|
62309
|
+
'areRelationsValid'?: boolean;
|
|
62310
|
+
/**
|
|
62311
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
62312
|
+
*/
|
|
62313
|
+
'content': object;
|
|
62314
|
+
'isHidden'?: boolean;
|
|
62261
62315
|
}
|
|
62262
62316
|
|
|
62263
62317
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -62291,7 +62345,7 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
|
62291
62345
|
* Additional details to be included in the automated message.
|
|
62292
62346
|
*/
|
|
62293
62347
|
'details'?: object;
|
|
62294
|
-
'metadata'?:
|
|
62348
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
62295
62349
|
/**
|
|
62296
62350
|
* Current state of the automation.
|
|
62297
62351
|
*/
|
|
@@ -62300,26 +62354,102 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
|
62300
62354
|
* Specify automation evaluation mode.
|
|
62301
62355
|
*/
|
|
62302
62356
|
'evaluationMode'?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
62303
|
-
'schedule'?:
|
|
62304
|
-
'alert'?:
|
|
62305
|
-
'tabularExports'?: Array<
|
|
62306
|
-
'visualExports'?: Array<
|
|
62307
|
-
'imageExports'?: Array<
|
|
62308
|
-
'rawExports'?: Array<
|
|
62309
|
-
'slidesExports'?: Array<
|
|
62310
|
-
'dashboardTabularExports'?: Array<
|
|
62357
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
62358
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
62359
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
62360
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
62361
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
62362
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
62363
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
62364
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
62311
62365
|
/**
|
|
62312
62366
|
* External recipients of the automation action results.
|
|
62313
62367
|
*/
|
|
62314
|
-
'externalRecipients'?: Array<
|
|
62368
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
62315
62369
|
'createdAt'?: string;
|
|
62316
62370
|
'modifiedAt'?: string;
|
|
62317
62371
|
}
|
|
62318
62372
|
|
|
62373
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
62374
|
+
'execution': AlertAfm;
|
|
62375
|
+
'condition': AlertCondition;
|
|
62376
|
+
/**
|
|
62377
|
+
* 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.
|
|
62378
|
+
*/
|
|
62379
|
+
'trigger'?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
62380
|
+
/**
|
|
62381
|
+
* Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
|
|
62382
|
+
*/
|
|
62383
|
+
'interval'?: JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum;
|
|
62384
|
+
}
|
|
62385
|
+
|
|
62386
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
|
|
62387
|
+
|
|
62388
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
|
|
62389
|
+
|
|
62390
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
62391
|
+
'requestPayload': DashboardTabularExportRequestV2;
|
|
62392
|
+
}
|
|
62393
|
+
|
|
62319
62394
|
export declare type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
62320
62395
|
|
|
62396
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
62397
|
+
/**
|
|
62398
|
+
* E-mail address to send notifications from.
|
|
62399
|
+
*/
|
|
62400
|
+
'email': string;
|
|
62401
|
+
}
|
|
62402
|
+
|
|
62403
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
62404
|
+
'requestPayload': ImageExportRequest;
|
|
62405
|
+
}
|
|
62406
|
+
|
|
62407
|
+
/**
|
|
62408
|
+
* Additional information for the automation.
|
|
62409
|
+
*/
|
|
62410
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
62411
|
+
[key: string]: any;
|
|
62412
|
+
'widget'?: string;
|
|
62413
|
+
'visibleFilters'?: Array<VisibleFilter>;
|
|
62414
|
+
}
|
|
62415
|
+
|
|
62416
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
62417
|
+
'requestPayload': RawExportAutomationRequest;
|
|
62418
|
+
}
|
|
62419
|
+
|
|
62420
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
62421
|
+
/**
|
|
62422
|
+
* 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.
|
|
62423
|
+
*/
|
|
62424
|
+
'cron': string;
|
|
62425
|
+
/**
|
|
62426
|
+
* Human-readable description of the cron expression.
|
|
62427
|
+
*/
|
|
62428
|
+
'cronDescription'?: string;
|
|
62429
|
+
/**
|
|
62430
|
+
* Timezone in which the schedule is defined.
|
|
62431
|
+
*/
|
|
62432
|
+
'timezone': string;
|
|
62433
|
+
/**
|
|
62434
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
62435
|
+
*/
|
|
62436
|
+
'firstRun'?: string;
|
|
62437
|
+
}
|
|
62438
|
+
|
|
62439
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
62440
|
+
'requestPayload': SlidesExportRequest;
|
|
62441
|
+
}
|
|
62442
|
+
|
|
62321
62443
|
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
62322
62444
|
|
|
62445
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
62446
|
+
'requestPayload': TabularExportRequest;
|
|
62447
|
+
}
|
|
62448
|
+
|
|
62449
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
62450
|
+
'requestPayload': VisualExportRequest;
|
|
62451
|
+
}
|
|
62452
|
+
|
|
62323
62453
|
/**
|
|
62324
62454
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
62325
62455
|
*/
|
|
@@ -62331,7 +62461,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
62331
62461
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
62332
62462
|
'data': Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
62333
62463
|
'links'?: ListLinks;
|
|
62334
|
-
'meta'?:
|
|
62464
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62335
62465
|
/**
|
|
62336
62466
|
* Included resources
|
|
62337
62467
|
*/
|
|
@@ -62340,13 +62470,38 @@ export declare interface JsonApiWorkspaceAutomationOutList {
|
|
|
62340
62470
|
|
|
62341
62471
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
62342
62472
|
'workspace'?: JsonApiWorkspaceOutRelationshipsParent;
|
|
62343
|
-
'notificationChannel'?:
|
|
62344
|
-
'analyticalDashboard'?:
|
|
62345
|
-
'createdBy'?:
|
|
62346
|
-
'modifiedBy'?:
|
|
62347
|
-
'exportDefinitions'?:
|
|
62348
|
-
'recipients'?:
|
|
62349
|
-
'automationResults'?:
|
|
62473
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
62474
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
62475
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
62476
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
62477
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
62478
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
62479
|
+
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
62480
|
+
}
|
|
62481
|
+
|
|
62482
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
|
|
62483
|
+
/**
|
|
62484
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62485
|
+
*/
|
|
62486
|
+
'data': Array<JsonApiAutomationResultLinkage>;
|
|
62487
|
+
}
|
|
62488
|
+
|
|
62489
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
|
|
62490
|
+
/**
|
|
62491
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62492
|
+
*/
|
|
62493
|
+
'data': Array<JsonApiExportDefinitionLinkage>;
|
|
62494
|
+
}
|
|
62495
|
+
|
|
62496
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
|
|
62497
|
+
'data': JsonApiNotificationChannelLinkage | null;
|
|
62498
|
+
}
|
|
62499
|
+
|
|
62500
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
62501
|
+
/**
|
|
62502
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62503
|
+
*/
|
|
62504
|
+
'data': Array<JsonApiUserLinkage>;
|
|
62350
62505
|
}
|
|
62351
62506
|
|
|
62352
62507
|
export declare type JsonApiWorkspaceAutomationOutTypeEnum = 'workspaceAutomation';
|
|
@@ -62411,7 +62566,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
62411
62566
|
* API identifier of an object
|
|
62412
62567
|
*/
|
|
62413
62568
|
'id': string;
|
|
62414
|
-
'meta'?:
|
|
62569
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62415
62570
|
'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
62416
62571
|
'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
62417
62572
|
}
|
|
@@ -62437,7 +62592,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
62437
62592
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
62438
62593
|
'data': Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
62439
62594
|
'links'?: ListLinks;
|
|
62440
|
-
'meta'?:
|
|
62595
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62441
62596
|
/**
|
|
62442
62597
|
* Included resources
|
|
62443
62598
|
*/
|
|
@@ -62466,7 +62621,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
62466
62621
|
* API identifier of an object
|
|
62467
62622
|
*/
|
|
62468
62623
|
'id': string;
|
|
62469
|
-
'meta'?:
|
|
62624
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62470
62625
|
'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
62471
62626
|
'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
62472
62627
|
'links'?: ObjectLinks;
|
|
@@ -62508,14 +62663,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
62508
62663
|
* API identifier of an object
|
|
62509
62664
|
*/
|
|
62510
62665
|
'id': string;
|
|
62511
|
-
'attributes'?:
|
|
62512
|
-
'relationships'?:
|
|
62666
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
62667
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
62668
|
+
}
|
|
62669
|
+
|
|
62670
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
62671
|
+
'title'?: string;
|
|
62672
|
+
'description'?: string;
|
|
62673
|
+
'filterValues'?: Array<string>;
|
|
62513
62674
|
}
|
|
62514
62675
|
|
|
62515
62676
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
62516
62677
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
62517
62678
|
}
|
|
62518
62679
|
|
|
62680
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
62681
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
62682
|
+
}
|
|
62683
|
+
|
|
62684
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
62685
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
62686
|
+
}
|
|
62687
|
+
|
|
62519
62688
|
export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
62520
62689
|
|
|
62521
62690
|
/**
|
|
@@ -62540,15 +62709,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
62540
62709
|
* API identifier of an object
|
|
62541
62710
|
*/
|
|
62542
62711
|
'id': string;
|
|
62543
|
-
'meta'?:
|
|
62544
|
-
'attributes'?:
|
|
62545
|
-
'relationships'?:
|
|
62546
|
-
}
|
|
62547
|
-
|
|
62548
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
62549
|
-
'title'?: string;
|
|
62550
|
-
'description'?: string;
|
|
62551
|
-
'filterValues'?: Array<string>;
|
|
62712
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62713
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
62714
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
62552
62715
|
}
|
|
62553
62716
|
|
|
62554
62717
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -62566,21 +62729,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
62566
62729
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
62567
62730
|
'data': Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
62568
62731
|
'links'?: ListLinks;
|
|
62569
|
-
'meta'?:
|
|
62732
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62570
62733
|
/**
|
|
62571
62734
|
* Included resources
|
|
62572
62735
|
*/
|
|
62573
62736
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
62574
62737
|
}
|
|
62575
62738
|
|
|
62576
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
62577
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
62578
|
-
}
|
|
62579
|
-
|
|
62580
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
62581
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
62582
|
-
}
|
|
62583
|
-
|
|
62584
62739
|
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
62585
62740
|
|
|
62586
62741
|
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
@@ -62592,9 +62747,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
62592
62747
|
* API identifier of an object
|
|
62593
62748
|
*/
|
|
62594
62749
|
'id': string;
|
|
62595
|
-
'meta'?:
|
|
62596
|
-
'attributes'?:
|
|
62597
|
-
'relationships'?:
|
|
62750
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62751
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
62752
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
62598
62753
|
'links'?: ObjectLinks;
|
|
62599
62754
|
}
|
|
62600
62755
|
|
|
@@ -62612,8 +62767,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
62612
62767
|
* API identifier of an object
|
|
62613
62768
|
*/
|
|
62614
62769
|
'id': string;
|
|
62615
|
-
'attributes'?:
|
|
62616
|
-
'relationships'?:
|
|
62770
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
62771
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
62617
62772
|
}
|
|
62618
62773
|
|
|
62619
62774
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -62720,7 +62875,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
62720
62875
|
export declare interface JsonApiWorkspaceOutList {
|
|
62721
62876
|
'data': Array<JsonApiWorkspaceOutWithLinks>;
|
|
62722
62877
|
'links'?: ListLinks;
|
|
62723
|
-
'meta'?:
|
|
62878
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62724
62879
|
/**
|
|
62725
62880
|
* Included resources
|
|
62726
62881
|
*/
|
|
@@ -62850,7 +63005,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
62850
63005
|
* API identifier of an object
|
|
62851
63006
|
*/
|
|
62852
63007
|
'id': string;
|
|
62853
|
-
'meta'?:
|
|
63008
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62854
63009
|
'attributes'?: JsonApiUserSettingInAttributes;
|
|
62855
63010
|
}
|
|
62856
63011
|
|
|
@@ -62865,7 +63020,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
62865
63020
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
62866
63021
|
'data': Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
62867
63022
|
'links'?: ListLinks;
|
|
62868
|
-
'meta'?:
|
|
63023
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62869
63024
|
}
|
|
62870
63025
|
|
|
62871
63026
|
export declare type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
|
|
@@ -62879,7 +63034,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
62879
63034
|
* API identifier of an object
|
|
62880
63035
|
*/
|
|
62881
63036
|
'id': string;
|
|
62882
|
-
'meta'?:
|
|
63037
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62883
63038
|
'attributes'?: JsonApiUserSettingInAttributes;
|
|
62884
63039
|
'links'?: ObjectLinks;
|
|
62885
63040
|
}
|
|
@@ -67163,54 +67318,61 @@ declare interface ListLlmProviderModelsResponse {
|
|
|
67163
67318
|
*/
|
|
67164
67319
|
export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpointsApiInterface {
|
|
67165
67320
|
/**
|
|
67166
|
-
*
|
|
67321
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67167
67322
|
* @summary Post LLM endpoint entities
|
|
67168
67323
|
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67169
67324
|
* @param {*} [options] Override http request option.
|
|
67325
|
+
* @deprecated
|
|
67170
67326
|
* @throws {RequiredError}
|
|
67171
67327
|
* @memberof LLMEndpointsApi
|
|
67172
67328
|
*/
|
|
67173
67329
|
createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67174
67330
|
/**
|
|
67175
|
-
*
|
|
67331
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67332
|
+
* @summary Delete LLM endpoint entity
|
|
67176
67333
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67177
67334
|
* @param {*} [options] Override http request option.
|
|
67335
|
+
* @deprecated
|
|
67178
67336
|
* @throws {RequiredError}
|
|
67179
67337
|
* @memberof LLMEndpointsApi
|
|
67180
67338
|
*/
|
|
67181
67339
|
deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67182
67340
|
/**
|
|
67183
|
-
*
|
|
67341
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67184
67342
|
* @summary Get all LLM endpoint entities
|
|
67185
67343
|
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
67186
67344
|
* @param {*} [options] Override http request option.
|
|
67345
|
+
* @deprecated
|
|
67187
67346
|
* @throws {RequiredError}
|
|
67188
67347
|
* @memberof LLMEndpointsApi
|
|
67189
67348
|
*/
|
|
67190
67349
|
getAllEntitiesLlmEndpoints(requestParameters?: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67191
67350
|
/**
|
|
67192
|
-
*
|
|
67351
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67193
67352
|
* @summary Get LLM endpoint entity
|
|
67194
67353
|
* @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67195
67354
|
* @param {*} [options] Override http request option.
|
|
67355
|
+
* @deprecated
|
|
67196
67356
|
* @throws {RequiredError}
|
|
67197
67357
|
* @memberof LLMEndpointsApi
|
|
67198
67358
|
*/
|
|
67199
67359
|
getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67200
67360
|
/**
|
|
67201
|
-
*
|
|
67361
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67202
67362
|
* @summary Patch LLM endpoint entity
|
|
67203
67363
|
* @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67204
67364
|
* @param {*} [options] Override http request option.
|
|
67365
|
+
* @deprecated
|
|
67205
67366
|
* @throws {RequiredError}
|
|
67206
67367
|
* @memberof LLMEndpointsApi
|
|
67207
67368
|
*/
|
|
67208
67369
|
patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67209
67370
|
/**
|
|
67210
|
-
*
|
|
67371
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67211
67372
|
* @summary PUT LLM endpoint entity
|
|
67212
67373
|
* @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67213
67374
|
* @param {*} [options] Override http request option.
|
|
67375
|
+
* @deprecated
|
|
67214
67376
|
* @throws {RequiredError}
|
|
67215
67377
|
* @memberof LLMEndpointsApi
|
|
67216
67378
|
*/
|
|
@@ -67218,7 +67380,7 @@ export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpo
|
|
|
67218
67380
|
}
|
|
67219
67381
|
|
|
67220
67382
|
/**
|
|
67221
|
-
*
|
|
67383
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67222
67384
|
* @summary Post LLM endpoint entities
|
|
67223
67385
|
* @param {AxiosInstance} axios Axios instance.
|
|
67224
67386
|
* @param {string} basePath Base path.
|
|
@@ -67230,7 +67392,8 @@ export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpo
|
|
|
67230
67392
|
export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67231
67393
|
|
|
67232
67394
|
/**
|
|
67233
|
-
*
|
|
67395
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67396
|
+
* @summary Delete LLM endpoint entity
|
|
67234
67397
|
* @param {AxiosInstance} axios Axios instance.
|
|
67235
67398
|
* @param {string} basePath Base path.
|
|
67236
67399
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -67241,7 +67404,7 @@ export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosIns
|
|
|
67241
67404
|
export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
67242
67405
|
|
|
67243
67406
|
/**
|
|
67244
|
-
*
|
|
67407
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67245
67408
|
* @summary Get all LLM endpoint entities
|
|
67246
67409
|
* @param {AxiosInstance} axios Axios instance.
|
|
67247
67410
|
* @param {string} basePath Base path.
|
|
@@ -67253,7 +67416,7 @@ export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosIns
|
|
|
67253
67416
|
export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67254
67417
|
|
|
67255
67418
|
/**
|
|
67256
|
-
*
|
|
67419
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67257
67420
|
* @summary Get LLM endpoint entity
|
|
67258
67421
|
* @param {AxiosInstance} axios Axios instance.
|
|
67259
67422
|
* @param {string} basePath Base path.
|
|
@@ -67265,7 +67428,7 @@ export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosI
|
|
|
67265
67428
|
export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67266
67429
|
|
|
67267
67430
|
/**
|
|
67268
|
-
*
|
|
67431
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67269
67432
|
* @summary Patch LLM endpoint entity
|
|
67270
67433
|
* @param {AxiosInstance} axios Axios instance.
|
|
67271
67434
|
* @param {string} basePath Base path.
|
|
@@ -67277,7 +67440,7 @@ export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstan
|
|
|
67277
67440
|
export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67278
67441
|
|
|
67279
67442
|
/**
|
|
67280
|
-
*
|
|
67443
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67281
67444
|
* @summary PUT LLM endpoint entity
|
|
67282
67445
|
* @param {AxiosInstance} axios Axios instance.
|
|
67283
67446
|
* @param {string} basePath Base path.
|
|
@@ -67289,7 +67452,7 @@ export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInst
|
|
|
67289
67452
|
export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67290
67453
|
|
|
67291
67454
|
/**
|
|
67292
|
-
*
|
|
67455
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67293
67456
|
* @summary Post LLM endpoint entities
|
|
67294
67457
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
67295
67458
|
* @param {*} [options] Override http request option.
|
|
@@ -67299,7 +67462,8 @@ export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosIns
|
|
|
67299
67462
|
export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67300
67463
|
|
|
67301
67464
|
/**
|
|
67302
|
-
*
|
|
67465
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67466
|
+
* @summary Delete LLM endpoint entity
|
|
67303
67467
|
* @param {string} id
|
|
67304
67468
|
* @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
67469
|
* @param {*} [options] Override http request option.
|
|
@@ -67309,7 +67473,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoint
|
|
|
67309
67473
|
export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67310
67474
|
|
|
67311
67475
|
/**
|
|
67312
|
-
*
|
|
67476
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67313
67477
|
* @summary Get all LLM endpoint entities
|
|
67314
67478
|
* @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
67479
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -67323,7 +67487,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoint
|
|
|
67323
67487
|
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
67488
|
|
|
67325
67489
|
/**
|
|
67326
|
-
*
|
|
67490
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67327
67491
|
* @summary Get LLM endpoint entity
|
|
67328
67492
|
* @param {string} id
|
|
67329
67493
|
* @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 +67498,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoi
|
|
|
67334
67498
|
export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67335
67499
|
|
|
67336
67500
|
/**
|
|
67337
|
-
*
|
|
67501
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67338
67502
|
* @summary Patch LLM endpoint entity
|
|
67339
67503
|
* @param {string} id
|
|
67340
67504
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -67346,7 +67510,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(i
|
|
|
67346
67510
|
export declare function LLMEndpointsApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67347
67511
|
|
|
67348
67512
|
/**
|
|
67349
|
-
*
|
|
67513
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67350
67514
|
* @summary PUT LLM endpoint entity
|
|
67351
67515
|
* @param {string} id
|
|
67352
67516
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -67456,54 +67620,61 @@ export declare interface LLMEndpointsApiGetEntityLlmEndpointsRequest {
|
|
|
67456
67620
|
*/
|
|
67457
67621
|
export declare interface LLMEndpointsApiInterface {
|
|
67458
67622
|
/**
|
|
67459
|
-
*
|
|
67623
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67460
67624
|
* @summary Post LLM endpoint entities
|
|
67461
67625
|
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67462
67626
|
* @param {*} [options] Override http request option.
|
|
67627
|
+
* @deprecated
|
|
67463
67628
|
* @throws {RequiredError}
|
|
67464
67629
|
* @memberof LLMEndpointsApiInterface
|
|
67465
67630
|
*/
|
|
67466
67631
|
createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67467
67632
|
/**
|
|
67468
|
-
*
|
|
67633
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67634
|
+
* @summary Delete LLM endpoint entity
|
|
67469
67635
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67470
67636
|
* @param {*} [options] Override http request option.
|
|
67637
|
+
* @deprecated
|
|
67471
67638
|
* @throws {RequiredError}
|
|
67472
67639
|
* @memberof LLMEndpointsApiInterface
|
|
67473
67640
|
*/
|
|
67474
67641
|
deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67475
67642
|
/**
|
|
67476
|
-
*
|
|
67643
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67477
67644
|
* @summary Get all LLM endpoint entities
|
|
67478
67645
|
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
67479
67646
|
* @param {*} [options] Override http request option.
|
|
67647
|
+
* @deprecated
|
|
67480
67648
|
* @throws {RequiredError}
|
|
67481
67649
|
* @memberof LLMEndpointsApiInterface
|
|
67482
67650
|
*/
|
|
67483
67651
|
getAllEntitiesLlmEndpoints(requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67484
67652
|
/**
|
|
67485
|
-
*
|
|
67653
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67486
67654
|
* @summary Get LLM endpoint entity
|
|
67487
67655
|
* @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67488
67656
|
* @param {*} [options] Override http request option.
|
|
67657
|
+
* @deprecated
|
|
67489
67658
|
* @throws {RequiredError}
|
|
67490
67659
|
* @memberof LLMEndpointsApiInterface
|
|
67491
67660
|
*/
|
|
67492
67661
|
getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67493
67662
|
/**
|
|
67494
|
-
*
|
|
67663
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67495
67664
|
* @summary Patch LLM endpoint entity
|
|
67496
67665
|
* @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67497
67666
|
* @param {*} [options] Override http request option.
|
|
67667
|
+
* @deprecated
|
|
67498
67668
|
* @throws {RequiredError}
|
|
67499
67669
|
* @memberof LLMEndpointsApiInterface
|
|
67500
67670
|
*/
|
|
67501
67671
|
patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67502
67672
|
/**
|
|
67503
|
-
*
|
|
67673
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67504
67674
|
* @summary PUT LLM endpoint entity
|
|
67505
67675
|
* @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67506
67676
|
* @param {*} [options] Override http request option.
|
|
67677
|
+
* @deprecated
|
|
67507
67678
|
* @throws {RequiredError}
|
|
67508
67679
|
* @memberof LLMEndpointsApiInterface
|
|
67509
67680
|
*/
|
|
@@ -71031,6 +71202,27 @@ export declare interface ObjectLinksContainer {
|
|
|
71031
71202
|
'links'?: ObjectLinks;
|
|
71032
71203
|
}
|
|
71033
71204
|
|
|
71205
|
+
declare interface ObjectReference {
|
|
71206
|
+
/**
|
|
71207
|
+
* Type of the referenced object.
|
|
71208
|
+
*/
|
|
71209
|
+
'type': ObjectReferenceTypeEnum;
|
|
71210
|
+
/**
|
|
71211
|
+
* Object identifier (e.g. widget ID, metric ID).
|
|
71212
|
+
*/
|
|
71213
|
+
'id': string;
|
|
71214
|
+
}
|
|
71215
|
+
|
|
71216
|
+
declare interface ObjectReferenceGroup {
|
|
71217
|
+
'context'?: ObjectReference;
|
|
71218
|
+
/**
|
|
71219
|
+
* Objects the user explicitly referenced within this context.
|
|
71220
|
+
*/
|
|
71221
|
+
'objects': Array<ObjectReference>;
|
|
71222
|
+
}
|
|
71223
|
+
|
|
71224
|
+
declare type ObjectReferenceTypeEnum = 'WIDGET' | 'METRIC' | 'ATTRIBUTE' | 'DASHBOARD';
|
|
71225
|
+
|
|
71034
71226
|
/**
|
|
71035
71227
|
* Request parameters for getCollectionItems operation in OGCAPIFeaturesApi.
|
|
71036
71228
|
* @export
|
|
@@ -72588,10 +72780,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72588
72780
|
*/
|
|
72589
72781
|
createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
72590
72782
|
/**
|
|
72591
|
-
*
|
|
72783
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72592
72784
|
* @summary Post LLM endpoint entities
|
|
72593
72785
|
* @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72594
72786
|
* @param {*} [options] Override http request option.
|
|
72787
|
+
* @deprecated
|
|
72595
72788
|
* @throws {RequiredError}
|
|
72596
72789
|
* @memberof OrganizationModelControllerApi
|
|
72597
72790
|
*/
|
|
@@ -72696,9 +72889,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72696
72889
|
*/
|
|
72697
72890
|
deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72698
72891
|
/**
|
|
72699
|
-
*
|
|
72892
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72893
|
+
* @summary Delete LLM endpoint entity
|
|
72700
72894
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72701
72895
|
* @param {*} [options] Override http request option.
|
|
72896
|
+
* @deprecated
|
|
72702
72897
|
* @throws {RequiredError}
|
|
72703
72898
|
* @memberof OrganizationModelControllerApi
|
|
72704
72899
|
*/
|
|
@@ -72821,10 +73016,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72821
73016
|
*/
|
|
72822
73017
|
getAllEntitiesIdentityProviders(requestParameters?: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
72823
73018
|
/**
|
|
72824
|
-
*
|
|
73019
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72825
73020
|
* @summary Get all LLM endpoint entities
|
|
72826
73021
|
* @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
72827
73022
|
* @param {*} [options] Override http request option.
|
|
73023
|
+
* @deprecated
|
|
72828
73024
|
* @throws {RequiredError}
|
|
72829
73025
|
* @memberof OrganizationModelControllerApi
|
|
72830
73026
|
*/
|
|
@@ -72964,10 +73160,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72964
73160
|
*/
|
|
72965
73161
|
getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
72966
73162
|
/**
|
|
72967
|
-
*
|
|
73163
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72968
73164
|
* @summary Get LLM endpoint entity
|
|
72969
73165
|
* @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72970
73166
|
* @param {*} [options] Override http request option.
|
|
73167
|
+
* @deprecated
|
|
72971
73168
|
* @throws {RequiredError}
|
|
72972
73169
|
* @memberof OrganizationModelControllerApi
|
|
72973
73170
|
*/
|
|
@@ -73089,10 +73286,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
73089
73286
|
*/
|
|
73090
73287
|
patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73091
73288
|
/**
|
|
73092
|
-
*
|
|
73289
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73093
73290
|
* @summary Patch LLM endpoint entity
|
|
73094
73291
|
* @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
73095
73292
|
* @param {*} [options] Override http request option.
|
|
73293
|
+
* @deprecated
|
|
73096
73294
|
* @throws {RequiredError}
|
|
73097
73295
|
* @memberof OrganizationModelControllerApi
|
|
73098
73296
|
*/
|
|
@@ -73197,10 +73395,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
73197
73395
|
*/
|
|
73198
73396
|
updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73199
73397
|
/**
|
|
73200
|
-
*
|
|
73398
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73201
73399
|
* @summary PUT LLM endpoint entity
|
|
73202
73400
|
* @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
73203
73401
|
* @param {*} [options] Override http request option.
|
|
73402
|
+
* @deprecated
|
|
73204
73403
|
* @throws {RequiredError}
|
|
73205
73404
|
* @memberof OrganizationModelControllerApi
|
|
73206
73405
|
*/
|
|
@@ -73319,7 +73518,7 @@ export declare function OrganizationModelControllerApi_CreateEntityExportTemplat
|
|
|
73319
73518
|
export declare function OrganizationModelControllerApi_CreateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73320
73519
|
|
|
73321
73520
|
/**
|
|
73322
|
-
*
|
|
73521
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73323
73522
|
* @summary Post LLM endpoint entities
|
|
73324
73523
|
* @param {AxiosInstance} axios Axios instance.
|
|
73325
73524
|
* @param {string} basePath Base path.
|
|
@@ -73463,7 +73662,8 @@ export declare function OrganizationModelControllerApi_DeleteEntityExportTemplat
|
|
|
73463
73662
|
export declare function OrganizationModelControllerApi_DeleteEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
73464
73663
|
|
|
73465
73664
|
/**
|
|
73466
|
-
*
|
|
73665
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73666
|
+
* @summary Delete LLM endpoint entity
|
|
73467
73667
|
* @param {AxiosInstance} axios Axios instance.
|
|
73468
73668
|
* @param {string} basePath Base path.
|
|
73469
73669
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -73630,7 +73830,7 @@ export declare function OrganizationModelControllerApi_GetAllEntitiesExportTempl
|
|
|
73630
73830
|
export declare function OrganizationModelControllerApi_GetAllEntitiesIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
73631
73831
|
|
|
73632
73832
|
/**
|
|
73633
|
-
*
|
|
73833
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73634
73834
|
* @summary Get all LLM endpoint entities
|
|
73635
73835
|
* @param {AxiosInstance} axios Axios instance.
|
|
73636
73836
|
* @param {string} basePath Base path.
|
|
@@ -73821,7 +74021,7 @@ export declare function OrganizationModelControllerApi_GetEntityExportTemplates(
|
|
|
73821
74021
|
export declare function OrganizationModelControllerApi_GetEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73822
74022
|
|
|
73823
74023
|
/**
|
|
73824
|
-
*
|
|
74024
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73825
74025
|
* @summary Get LLM endpoint entity
|
|
73826
74026
|
* @param {AxiosInstance} axios Axios instance.
|
|
73827
74027
|
* @param {string} basePath Base path.
|
|
@@ -73988,7 +74188,7 @@ export declare function OrganizationModelControllerApi_PatchEntityExportTemplate
|
|
|
73988
74188
|
export declare function OrganizationModelControllerApi_PatchEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73989
74189
|
|
|
73990
74190
|
/**
|
|
73991
|
-
*
|
|
74191
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73992
74192
|
* @summary Patch LLM endpoint entity
|
|
73993
74193
|
* @param {AxiosInstance} axios Axios instance.
|
|
73994
74194
|
* @param {string} basePath Base path.
|
|
@@ -74132,7 +74332,7 @@ export declare function OrganizationModelControllerApi_UpdateEntityExportTemplat
|
|
|
74132
74332
|
export declare function OrganizationModelControllerApi_UpdateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
74133
74333
|
|
|
74134
74334
|
/**
|
|
74135
|
-
*
|
|
74335
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74136
74336
|
* @summary PUT LLM endpoint entity
|
|
74137
74337
|
* @param {AxiosInstance} axios Axios instance.
|
|
74138
74338
|
* @param {string} basePath Base path.
|
|
@@ -74268,7 +74468,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEn
|
|
|
74268
74468
|
export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEntityIdentityProviders(jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74269
74469
|
|
|
74270
74470
|
/**
|
|
74271
|
-
*
|
|
74471
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74272
74472
|
* @summary Post LLM endpoint entities
|
|
74273
74473
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
74274
74474
|
* @param {*} [options] Override http request option.
|
|
@@ -74396,7 +74596,8 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEn
|
|
|
74396
74596
|
export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74397
74597
|
|
|
74398
74598
|
/**
|
|
74399
|
-
*
|
|
74599
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74600
|
+
* @summary Delete LLM endpoint entity
|
|
74400
74601
|
* @param {string} id
|
|
74401
74602
|
* @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
74603
|
* @param {*} [options] Override http request option.
|
|
@@ -74567,7 +74768,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetAllEn
|
|
|
74567
74768
|
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
74769
|
|
|
74569
74770
|
/**
|
|
74570
|
-
*
|
|
74771
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74571
74772
|
* @summary Get all LLM endpoint entities
|
|
74572
74773
|
* @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
74774
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -74776,7 +74977,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntit
|
|
|
74776
74977
|
export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74777
74978
|
|
|
74778
74979
|
/**
|
|
74779
|
-
*
|
|
74980
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74780
74981
|
* @summary Get LLM endpoint entity
|
|
74781
74982
|
* @param {string} id
|
|
74782
74983
|
* @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 +75138,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEnt
|
|
|
74937
75138
|
export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEntityIdentityProviders(id: string, jsonApiIdentityProviderPatchDocument: JsonApiIdentityProviderPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74938
75139
|
|
|
74939
75140
|
/**
|
|
74940
|
-
*
|
|
75141
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74941
75142
|
* @summary Patch LLM endpoint entity
|
|
74942
75143
|
* @param {string} id
|
|
74943
75144
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -75084,7 +75285,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEn
|
|
|
75084
75285
|
export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEntityIdentityProviders(id: string, jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
75085
75286
|
|
|
75086
75287
|
/**
|
|
75087
|
-
*
|
|
75288
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
75088
75289
|
* @summary PUT LLM endpoint entity
|
|
75089
75290
|
* @param {string} id
|
|
75090
75291
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -76633,10 +76834,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76633
76834
|
*/
|
|
76634
76835
|
createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
76635
76836
|
/**
|
|
76636
|
-
*
|
|
76837
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76637
76838
|
* @summary Post LLM endpoint entities
|
|
76638
76839
|
* @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
76639
76840
|
* @param {*} [options] Override http request option.
|
|
76841
|
+
* @deprecated
|
|
76640
76842
|
* @throws {RequiredError}
|
|
76641
76843
|
* @memberof OrganizationModelControllerApiInterface
|
|
76642
76844
|
*/
|
|
@@ -76741,9 +76943,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76741
76943
|
*/
|
|
76742
76944
|
deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
76743
76945
|
/**
|
|
76744
|
-
*
|
|
76946
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76947
|
+
* @summary Delete LLM endpoint entity
|
|
76745
76948
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
76746
76949
|
* @param {*} [options] Override http request option.
|
|
76950
|
+
* @deprecated
|
|
76747
76951
|
* @throws {RequiredError}
|
|
76748
76952
|
* @memberof OrganizationModelControllerApiInterface
|
|
76749
76953
|
*/
|
|
@@ -76866,10 +77070,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76866
77070
|
*/
|
|
76867
77071
|
getAllEntitiesIdentityProviders(requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
76868
77072
|
/**
|
|
76869
|
-
*
|
|
77073
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76870
77074
|
* @summary Get all LLM endpoint entities
|
|
76871
77075
|
* @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
76872
77076
|
* @param {*} [options] Override http request option.
|
|
77077
|
+
* @deprecated
|
|
76873
77078
|
* @throws {RequiredError}
|
|
76874
77079
|
* @memberof OrganizationModelControllerApiInterface
|
|
76875
77080
|
*/
|
|
@@ -77009,10 +77214,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77009
77214
|
*/
|
|
77010
77215
|
getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77011
77216
|
/**
|
|
77012
|
-
*
|
|
77217
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77013
77218
|
* @summary Get LLM endpoint entity
|
|
77014
77219
|
* @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77015
77220
|
* @param {*} [options] Override http request option.
|
|
77221
|
+
* @deprecated
|
|
77016
77222
|
* @throws {RequiredError}
|
|
77017
77223
|
* @memberof OrganizationModelControllerApiInterface
|
|
77018
77224
|
*/
|
|
@@ -77134,10 +77340,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77134
77340
|
*/
|
|
77135
77341
|
patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77136
77342
|
/**
|
|
77137
|
-
*
|
|
77343
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77138
77344
|
* @summary Patch LLM endpoint entity
|
|
77139
77345
|
* @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77140
77346
|
* @param {*} [options] Override http request option.
|
|
77347
|
+
* @deprecated
|
|
77141
77348
|
* @throws {RequiredError}
|
|
77142
77349
|
* @memberof OrganizationModelControllerApiInterface
|
|
77143
77350
|
*/
|
|
@@ -77242,10 +77449,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77242
77449
|
*/
|
|
77243
77450
|
updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77244
77451
|
/**
|
|
77245
|
-
*
|
|
77452
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77246
77453
|
* @summary PUT LLM endpoint entity
|
|
77247
77454
|
* @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77248
77455
|
* @param {*} [options] Override http request option.
|
|
77456
|
+
* @deprecated
|
|
77249
77457
|
* @throws {RequiredError}
|
|
77250
77458
|
* @memberof OrganizationModelControllerApiInterface
|
|
77251
77459
|
*/
|
|
@@ -80316,6 +80524,27 @@ export declare interface ResolvedLlmEndpoints {
|
|
|
80316
80524
|
'data': Array<ResolvedLlmEndpoint>;
|
|
80317
80525
|
}
|
|
80318
80526
|
|
|
80527
|
+
declare interface ResolvedLlmProvider {
|
|
80528
|
+
/**
|
|
80529
|
+
* Provider Id
|
|
80530
|
+
*/
|
|
80531
|
+
'id': string;
|
|
80532
|
+
/**
|
|
80533
|
+
* Provider Title
|
|
80534
|
+
*/
|
|
80535
|
+
'title': string;
|
|
80536
|
+
'models': Array<LlmModel>;
|
|
80537
|
+
}
|
|
80538
|
+
|
|
80539
|
+
declare interface ResolvedLlms {
|
|
80540
|
+
'data'?: ResolvedLlmsData;
|
|
80541
|
+
}
|
|
80542
|
+
|
|
80543
|
+
/**
|
|
80544
|
+
* @type ResolvedLlmsData
|
|
80545
|
+
*/
|
|
80546
|
+
declare type ResolvedLlmsData = ResolvedLlmEndpoint | ResolvedLlmProvider;
|
|
80547
|
+
|
|
80319
80548
|
/**
|
|
80320
80549
|
* Setting and its value.
|
|
80321
80550
|
*/
|
|
@@ -80487,6 +80716,20 @@ export declare interface ResultSpec {
|
|
|
80487
80716
|
'totals'?: Array<Total>;
|
|
80488
80717
|
}
|
|
80489
80718
|
|
|
80719
|
+
/**
|
|
80720
|
+
* Rich text widget displaying static content. Has no execution result.
|
|
80721
|
+
*/
|
|
80722
|
+
declare interface RichTextWidgetDescriptor extends WidgetDescriptor {
|
|
80723
|
+
/**
|
|
80724
|
+
* Widget object ID.
|
|
80725
|
+
*/
|
|
80726
|
+
'widgetId': string;
|
|
80727
|
+
/**
|
|
80728
|
+
* Widget title as displayed on the dashboard.
|
|
80729
|
+
*/
|
|
80730
|
+
'title': string;
|
|
80731
|
+
}
|
|
80732
|
+
|
|
80490
80733
|
/**
|
|
80491
80734
|
* Question -> Use Case routing. May contain final answer is a special use case is not required.
|
|
80492
80735
|
*/
|
|
@@ -82087,6 +82330,24 @@ export declare const tigerValidDescendantsClientFactory: (axios: AxiosInstance)
|
|
|
82087
82330
|
|
|
82088
82331
|
export declare const tigerValidObjectsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeValidObjects">;
|
|
82089
82332
|
|
|
82333
|
+
/**
|
|
82334
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
82335
|
+
*/
|
|
82336
|
+
declare interface ToolCallEventResult {
|
|
82337
|
+
/**
|
|
82338
|
+
* Name of the tool function that was called.
|
|
82339
|
+
*/
|
|
82340
|
+
'functionName': string;
|
|
82341
|
+
/**
|
|
82342
|
+
* JSON-encoded arguments passed to the tool function.
|
|
82343
|
+
*/
|
|
82344
|
+
'functionArguments': string;
|
|
82345
|
+
/**
|
|
82346
|
+
* Result returned by the tool function.
|
|
82347
|
+
*/
|
|
82348
|
+
'result': string;
|
|
82349
|
+
}
|
|
82350
|
+
|
|
82090
82351
|
/**
|
|
82091
82352
|
* 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
82353
|
*/
|
|
@@ -82473,6 +82734,13 @@ declare interface TrendingObjectsResult {
|
|
|
82473
82734
|
|
|
82474
82735
|
declare type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'DISABLED';
|
|
82475
82736
|
|
|
82737
|
+
/**
|
|
82738
|
+
* Ambient UI state: what the user is currently looking at (dashboard, visible widgets).
|
|
82739
|
+
*/
|
|
82740
|
+
declare interface UIContext {
|
|
82741
|
+
'dashboard'?: DashboardContext;
|
|
82742
|
+
}
|
|
82743
|
+
|
|
82476
82744
|
/**
|
|
82477
82745
|
* Information related to the file uploaded to the staging area.
|
|
82478
82746
|
*/
|
|
@@ -82631,10 +82899,15 @@ export declare interface UserAssignee {
|
|
|
82631
82899
|
}
|
|
82632
82900
|
|
|
82633
82901
|
/**
|
|
82634
|
-
* User context
|
|
82902
|
+
* User context with ambient UI state (view) and explicitly referenced objects.
|
|
82635
82903
|
*/
|
|
82636
82904
|
export declare interface UserContext {
|
|
82637
|
-
'
|
|
82905
|
+
'view'?: UIContext;
|
|
82906
|
+
/**
|
|
82907
|
+
* Groups of explicitly referenced objects, each optionally scoped by a context (e.g. a dashboard context with widget references).
|
|
82908
|
+
*/
|
|
82909
|
+
'referencedObjects'?: Array<ObjectReferenceGroup>;
|
|
82910
|
+
'activeObject'?: ActiveObjectIdentification;
|
|
82638
82911
|
}
|
|
82639
82912
|
|
|
82640
82913
|
/**
|
|
@@ -88028,6 +88301,32 @@ declare namespace VisualizationObjectModelV2 {
|
|
|
88028
88301
|
}
|
|
88029
88302
|
export { VisualizationObjectModelV2 }
|
|
88030
88303
|
|
|
88304
|
+
/**
|
|
88305
|
+
* Visualization switcher widget allowing users to toggle between multiple visualizations.
|
|
88306
|
+
*/
|
|
88307
|
+
declare interface VisualizationSwitcherWidgetDescriptor extends WidgetDescriptor {
|
|
88308
|
+
/**
|
|
88309
|
+
* Widget object ID.
|
|
88310
|
+
*/
|
|
88311
|
+
'widgetId': string;
|
|
88312
|
+
/**
|
|
88313
|
+
* Widget title as displayed on the dashboard.
|
|
88314
|
+
*/
|
|
88315
|
+
'title': string;
|
|
88316
|
+
/**
|
|
88317
|
+
* Signed result ID for the currently active visualization\'s execution result.
|
|
88318
|
+
*/
|
|
88319
|
+
'resultId'?: string;
|
|
88320
|
+
/**
|
|
88321
|
+
* ID of the currently active visualization in the switcher.
|
|
88322
|
+
*/
|
|
88323
|
+
'activeVisualizationId': string;
|
|
88324
|
+
/**
|
|
88325
|
+
* IDs of all visualizations available in the switcher.
|
|
88326
|
+
*/
|
|
88327
|
+
'visualizationIds': Array<string>;
|
|
88328
|
+
}
|
|
88329
|
+
|
|
88031
88330
|
/**
|
|
88032
88331
|
* Webhook destination for notifications. The property url is required on create and update.
|
|
88033
88332
|
*/
|
|
@@ -88106,6 +88405,15 @@ export declare interface WhatIfScenarioItem {
|
|
|
88106
88405
|
'adjustments': Array<WhatIfMeasureAdjustmentConfig>;
|
|
88107
88406
|
}
|
|
88108
88407
|
|
|
88408
|
+
/**
|
|
88409
|
+
* Descriptor for a widget on the dashboard.
|
|
88410
|
+
*/
|
|
88411
|
+
declare interface WidgetDescriptor {
|
|
88412
|
+
'title': string;
|
|
88413
|
+
'widgetId': string;
|
|
88414
|
+
'widgetType': string;
|
|
88415
|
+
}
|
|
88416
|
+
|
|
88109
88417
|
/**
|
|
88110
88418
|
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
88111
88419
|
*/
|