@gooddata/api-client-tiger 11.5.0-alpha.5 → 11.5.0-alpha.6
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 +745 -615
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +311 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +299 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +150 -22
- package/esm/generated/auth-json-api/api.d.ts +551 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +696 -0
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +166 -0
- package/esm/generated/metadata-json-api/api.d.ts +489 -560
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +50 -50
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8790 -8955
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/generated/result-json-api/openapi-spec.json +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -5260,6 +5260,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5260
5260
|
* @memberof ActionsApi
|
|
5261
5261
|
*/
|
|
5262
5262
|
getQualityIssues(requestParameters: AfmActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmGetQualityIssuesResponse, any, {}>>;
|
|
5263
|
+
/**
|
|
5264
|
+
* Returns the status of a quality issues calculation process identified by process ID.
|
|
5265
|
+
* @summary Get Quality Issues Calculation Status
|
|
5266
|
+
* @param {ActionsApiGetQualityIssuesCalculationStatusRequest} requestParameters Request parameters.
|
|
5267
|
+
* @param {*} [options] Override http request option.
|
|
5268
|
+
* @throws {RequiredError}
|
|
5269
|
+
* @memberof ActionsApi
|
|
5270
|
+
*/
|
|
5271
|
+
getQualityIssuesCalculationStatus(requestParameters: AfmActionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmQualityIssuesCalculationStatusResponse, any, {}>>;
|
|
5263
5272
|
/**
|
|
5264
5273
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5265
5274
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5332,6 +5341,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5332
5341
|
* @memberof ActionsApi
|
|
5333
5342
|
*/
|
|
5334
5343
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmAnalyticsCatalogTags, any, {}>>;
|
|
5344
|
+
/**
|
|
5345
|
+
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
5346
|
+
* @summary Trigger Quality Issues Calculation
|
|
5347
|
+
* @param {ActionsApiTriggerQualityIssuesCalculationRequest} requestParameters Request parameters.
|
|
5348
|
+
* @param {*} [options] Override http request option.
|
|
5349
|
+
* @throws {RequiredError}
|
|
5350
|
+
* @memberof ActionsApi
|
|
5351
|
+
*/
|
|
5352
|
+
triggerQualityIssuesCalculation(requestParameters: AfmActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmTriggerQualityIssuesCalculationResponse, any, {}>>;
|
|
5335
5353
|
/**
|
|
5336
5354
|
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5337
5355
|
* @summary (EXPERIMENTAL) Update memory item
|
|
@@ -5588,6 +5606,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5588
5606
|
* @throws {RequiredError}
|
|
5589
5607
|
*/
|
|
5590
5608
|
getQualityIssues: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5609
|
+
/**
|
|
5610
|
+
* Returns the status of a quality issues calculation process identified by process ID.
|
|
5611
|
+
* @summary Get Quality Issues Calculation Status
|
|
5612
|
+
* @param {string} workspaceId Workspace identifier
|
|
5613
|
+
* @param {string} processId
|
|
5614
|
+
* @param {*} [options] Override http request option.
|
|
5615
|
+
* @throws {RequiredError}
|
|
5616
|
+
*/
|
|
5617
|
+
getQualityIssuesCalculationStatus: (workspaceId: string, processId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5591
5618
|
/**
|
|
5592
5619
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5593
5620
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5664,6 +5691,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5664
5691
|
* @throws {RequiredError}
|
|
5665
5692
|
*/
|
|
5666
5693
|
tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5694
|
+
/**
|
|
5695
|
+
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
5696
|
+
* @summary Trigger Quality Issues Calculation
|
|
5697
|
+
* @param {string} workspaceId Workspace identifier
|
|
5698
|
+
* @param {*} [options] Override http request option.
|
|
5699
|
+
* @throws {RequiredError}
|
|
5700
|
+
*/
|
|
5701
|
+
triggerQualityIssuesCalculation: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5667
5702
|
/**
|
|
5668
5703
|
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5669
5704
|
* @summary (EXPERIMENTAL) Update memory item
|
|
@@ -5882,6 +5917,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5882
5917
|
* @throws {RequiredError}
|
|
5883
5918
|
*/
|
|
5884
5919
|
getQualityIssues(requestParameters: AfmActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<AfmGetQualityIssuesResponse>;
|
|
5920
|
+
/**
|
|
5921
|
+
* Returns the status of a quality issues calculation process identified by process ID.
|
|
5922
|
+
* @summary Get Quality Issues Calculation Status
|
|
5923
|
+
* @param {ActionsApiGetQualityIssuesCalculationStatusRequest} requestParameters Request parameters.
|
|
5924
|
+
* @param {*} [options] Override http request option.
|
|
5925
|
+
* @throws {RequiredError}
|
|
5926
|
+
*/
|
|
5927
|
+
getQualityIssuesCalculationStatus(requestParameters: AfmActionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<AfmQualityIssuesCalculationStatusResponse>;
|
|
5885
5928
|
/**
|
|
5886
5929
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5887
5930
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5946,6 +5989,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5946
5989
|
* @throws {RequiredError}
|
|
5947
5990
|
*/
|
|
5948
5991
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
|
|
5992
|
+
/**
|
|
5993
|
+
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
5994
|
+
* @summary Trigger Quality Issues Calculation
|
|
5995
|
+
* @param {ActionsApiTriggerQualityIssuesCalculationRequest} requestParameters Request parameters.
|
|
5996
|
+
* @param {*} [options] Override http request option.
|
|
5997
|
+
* @throws {RequiredError}
|
|
5998
|
+
*/
|
|
5999
|
+
triggerQualityIssuesCalculation(requestParameters: AfmActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
5949
6000
|
/**
|
|
5950
6001
|
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5951
6002
|
* @summary (EXPERIMENTAL) Update memory item
|
|
@@ -6199,6 +6250,15 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
6199
6250
|
* @throws {RequiredError}
|
|
6200
6251
|
*/
|
|
6201
6252
|
getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmGetQualityIssuesResponse>>;
|
|
6253
|
+
/**
|
|
6254
|
+
* Returns the status of a quality issues calculation process identified by process ID.
|
|
6255
|
+
* @summary Get Quality Issues Calculation Status
|
|
6256
|
+
* @param {string} workspaceId Workspace identifier
|
|
6257
|
+
* @param {string} processId
|
|
6258
|
+
* @param {*} [options] Override http request option.
|
|
6259
|
+
* @throws {RequiredError}
|
|
6260
|
+
*/
|
|
6261
|
+
getQualityIssuesCalculationStatus(workspaceId: string, processId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmQualityIssuesCalculationStatusResponse>>;
|
|
6202
6262
|
/**
|
|
6203
6263
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6204
6264
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6275,6 +6335,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
6275
6335
|
* @throws {RequiredError}
|
|
6276
6336
|
*/
|
|
6277
6337
|
tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmAnalyticsCatalogTags>>;
|
|
6338
|
+
/**
|
|
6339
|
+
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
6340
|
+
* @summary Trigger Quality Issues Calculation
|
|
6341
|
+
* @param {string} workspaceId Workspace identifier
|
|
6342
|
+
* @param {*} [options] Override http request option.
|
|
6343
|
+
* @throws {RequiredError}
|
|
6344
|
+
*/
|
|
6345
|
+
triggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>>;
|
|
6278
6346
|
/**
|
|
6279
6347
|
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6280
6348
|
* @summary (EXPERIMENTAL) Update memory item
|
|
@@ -6304,6 +6372,26 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
6304
6372
|
validateLLMEndpointById(llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
6305
6373
|
};
|
|
6306
6374
|
|
|
6375
|
+
/**
|
|
6376
|
+
* Request parameters for getQualityIssuesCalculationStatus operation in ActionsApi.
|
|
6377
|
+
* @export
|
|
6378
|
+
* @interface ActionsApiGetQualityIssuesCalculationStatusRequest
|
|
6379
|
+
*/
|
|
6380
|
+
export declare interface AfmActionsApiGetQualityIssuesCalculationStatusRequest {
|
|
6381
|
+
/**
|
|
6382
|
+
* Workspace identifier
|
|
6383
|
+
* @type {string}
|
|
6384
|
+
* @memberof ActionsApiGetQualityIssuesCalculationStatus
|
|
6385
|
+
*/
|
|
6386
|
+
readonly workspaceId: string;
|
|
6387
|
+
/**
|
|
6388
|
+
*
|
|
6389
|
+
* @type {string}
|
|
6390
|
+
* @memberof ActionsApiGetQualityIssuesCalculationStatus
|
|
6391
|
+
*/
|
|
6392
|
+
readonly processId: string;
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6307
6395
|
/**
|
|
6308
6396
|
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
6309
6397
|
* @export
|
|
@@ -6531,6 +6619,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6531
6619
|
* @memberof ActionsApiInterface
|
|
6532
6620
|
*/
|
|
6533
6621
|
getQualityIssues(requestParameters: AfmActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<AfmGetQualityIssuesResponse>;
|
|
6622
|
+
/**
|
|
6623
|
+
* Returns the status of a quality issues calculation process identified by process ID.
|
|
6624
|
+
* @summary Get Quality Issues Calculation Status
|
|
6625
|
+
* @param {ActionsApiGetQualityIssuesCalculationStatusRequest} requestParameters Request parameters.
|
|
6626
|
+
* @param {*} [options] Override http request option.
|
|
6627
|
+
* @throws {RequiredError}
|
|
6628
|
+
* @memberof ActionsApiInterface
|
|
6629
|
+
*/
|
|
6630
|
+
getQualityIssuesCalculationStatus(requestParameters: AfmActionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<AfmQualityIssuesCalculationStatusResponse>;
|
|
6534
6631
|
/**
|
|
6535
6632
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6536
6633
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6603,6 +6700,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6603
6700
|
* @memberof ActionsApiInterface
|
|
6604
6701
|
*/
|
|
6605
6702
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
|
|
6703
|
+
/**
|
|
6704
|
+
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
6705
|
+
* @summary Trigger Quality Issues Calculation
|
|
6706
|
+
* @param {ActionsApiTriggerQualityIssuesCalculationRequest} requestParameters Request parameters.
|
|
6707
|
+
* @param {*} [options] Override http request option.
|
|
6708
|
+
* @throws {RequiredError}
|
|
6709
|
+
* @memberof ActionsApiInterface
|
|
6710
|
+
*/
|
|
6711
|
+
triggerQualityIssuesCalculation(requestParameters: AfmActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
6606
6712
|
/**
|
|
6607
6713
|
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6608
6714
|
* @summary (EXPERIMENTAL) Update memory item
|
|
@@ -6632,6 +6738,20 @@ export declare interface AfmActionsApiInterface {
|
|
|
6632
6738
|
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6633
6739
|
}
|
|
6634
6740
|
|
|
6741
|
+
/**
|
|
6742
|
+
* Request parameters for triggerQualityIssuesCalculation operation in ActionsApi.
|
|
6743
|
+
* @export
|
|
6744
|
+
* @interface ActionsApiTriggerQualityIssuesCalculationRequest
|
|
6745
|
+
*/
|
|
6746
|
+
export declare interface AfmActionsApiTriggerQualityIssuesCalculationRequest {
|
|
6747
|
+
/**
|
|
6748
|
+
* Workspace identifier
|
|
6749
|
+
* @type {string}
|
|
6750
|
+
* @memberof ActionsApiTriggerQualityIssuesCalculation
|
|
6751
|
+
*/
|
|
6752
|
+
readonly workspaceId: string;
|
|
6753
|
+
}
|
|
6754
|
+
|
|
6635
6755
|
export declare interface AfmAnalyticsCatalogCreatedBy {
|
|
6636
6756
|
/**
|
|
6637
6757
|
* Users who created any object in the catalog
|
|
@@ -6852,6 +6972,9 @@ export declare type AfmFilterDefinition = AfmAbsoluteDateFilter | AfmComparisonM
|
|
|
6852
6972
|
export declare type AfmFilterDefinitionForSimpleMeasure = AfmAttributeFilter | AfmDateFilter;
|
|
6853
6973
|
|
|
6854
6974
|
export declare interface AfmGetQualityIssuesResponse {
|
|
6975
|
+
/**
|
|
6976
|
+
* List of quality issues found in the workspace
|
|
6977
|
+
*/
|
|
6855
6978
|
issues: Array<AfmQualityIssue>;
|
|
6856
6979
|
}
|
|
6857
6980
|
|
|
@@ -7269,20 +7392,68 @@ export declare interface AfmPositiveAttributeFilterPositiveAttributeFilter {
|
|
|
7269
7392
|
label: AfmModelIdentifier;
|
|
7270
7393
|
}
|
|
7271
7394
|
|
|
7395
|
+
/**
|
|
7396
|
+
* List of quality issues (available when status is COMPLETED)
|
|
7397
|
+
*/
|
|
7272
7398
|
export declare interface AfmQualityIssue {
|
|
7399
|
+
/**
|
|
7400
|
+
* List of objects affected by this quality issue
|
|
7401
|
+
*/
|
|
7273
7402
|
objects: Array<AfmQualityIssueObject>;
|
|
7274
|
-
|
|
7403
|
+
/**
|
|
7404
|
+
* Severity level
|
|
7405
|
+
*/
|
|
7406
|
+
severity: QualityIssueSeverityEnum;
|
|
7407
|
+
/**
|
|
7408
|
+
* Quality issue code
|
|
7409
|
+
*/
|
|
7275
7410
|
code: string;
|
|
7411
|
+
/**
|
|
7412
|
+
* Detailed information about the quality issue
|
|
7413
|
+
*/
|
|
7276
7414
|
detail: {
|
|
7277
7415
|
[key: string]: object;
|
|
7278
7416
|
};
|
|
7279
7417
|
}
|
|
7280
7418
|
|
|
7419
|
+
/**
|
|
7420
|
+
* List of objects affected by this quality issue
|
|
7421
|
+
*/
|
|
7281
7422
|
export declare interface AfmQualityIssueObject {
|
|
7423
|
+
/**
|
|
7424
|
+
* Object type
|
|
7425
|
+
*/
|
|
7282
7426
|
type: string;
|
|
7427
|
+
/**
|
|
7428
|
+
* Object ID
|
|
7429
|
+
*/
|
|
7283
7430
|
id: string;
|
|
7284
7431
|
}
|
|
7285
7432
|
|
|
7433
|
+
export declare interface AfmQualityIssuesCalculationStatusResponse {
|
|
7434
|
+
/**
|
|
7435
|
+
* Current status of the calculation
|
|
7436
|
+
*/
|
|
7437
|
+
status: AfmQualityIssuesCalculationStatusResponseStatusEnum;
|
|
7438
|
+
/**
|
|
7439
|
+
* List of quality issues (available when status is COMPLETED)
|
|
7440
|
+
*/
|
|
7441
|
+
issues?: Array<AfmQualityIssue>;
|
|
7442
|
+
/**
|
|
7443
|
+
* Error message (available when status is FAILED or NOT_FOUND)
|
|
7444
|
+
*/
|
|
7445
|
+
error?: string;
|
|
7446
|
+
}
|
|
7447
|
+
|
|
7448
|
+
export declare const AfmQualityIssuesCalculationStatusResponseStatusEnum: {
|
|
7449
|
+
readonly RUNNING: "RUNNING";
|
|
7450
|
+
readonly COMPLETED: "COMPLETED";
|
|
7451
|
+
readonly FAILED: "FAILED";
|
|
7452
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
7453
|
+
};
|
|
7454
|
+
|
|
7455
|
+
export declare type AfmQualityIssuesCalculationStatusResponseStatusEnum = (typeof AfmQualityIssuesCalculationStatusResponseStatusEnum)[keyof typeof AfmQualityIssuesCalculationStatusResponseStatusEnum];
|
|
7456
|
+
|
|
7286
7457
|
/**
|
|
7287
7458
|
* Filter the result by comparing specified metric to given range of values.
|
|
7288
7459
|
*/
|
|
@@ -7432,6 +7603,17 @@ export declare const AfmSimpleMeasureDefinitionMeasureAggregationEnum: {
|
|
|
7432
7603
|
|
|
7433
7604
|
export declare type AfmSimpleMeasureDefinitionMeasureAggregationEnum = (typeof AfmSimpleMeasureDefinitionMeasureAggregationEnum)[keyof typeof AfmSimpleMeasureDefinitionMeasureAggregationEnum];
|
|
7434
7605
|
|
|
7606
|
+
export declare interface AfmTriggerQualityIssuesCalculationResponse {
|
|
7607
|
+
/**
|
|
7608
|
+
* Process ID for tracking the calculation status
|
|
7609
|
+
*/
|
|
7610
|
+
processId: string;
|
|
7611
|
+
/**
|
|
7612
|
+
* Current status of the calculation
|
|
7613
|
+
*/
|
|
7614
|
+
status: TriggerQualityIssuesCalculationResponseStatusEnum;
|
|
7615
|
+
}
|
|
7616
|
+
|
|
7435
7617
|
/**
|
|
7436
7618
|
* Entity describing the valid descendants request.
|
|
7437
7619
|
*/
|
|
@@ -14203,6 +14385,10 @@ declare interface ChangeAnalysisRequest {
|
|
|
14203
14385
|
* Optional filters to apply.
|
|
14204
14386
|
*/
|
|
14205
14387
|
filters: Array<AttributeEqualityFilter>;
|
|
14388
|
+
/**
|
|
14389
|
+
* Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided.
|
|
14390
|
+
*/
|
|
14391
|
+
useSmartAttributeSelection: boolean;
|
|
14206
14392
|
}
|
|
14207
14393
|
|
|
14208
14394
|
/**
|
|
@@ -14429,8 +14615,8 @@ export declare interface ClusteringResult {
|
|
|
14429
14615
|
xCoord?: Array<number | null>;
|
|
14430
14616
|
yCoord?: Array<number | null>;
|
|
14431
14617
|
clusters: Array<number | null>;
|
|
14432
|
-
ycoord: Array<number>;
|
|
14433
14618
|
xcoord: Array<number>;
|
|
14619
|
+
ycoord: Array<number>;
|
|
14434
14620
|
}
|
|
14435
14621
|
|
|
14436
14622
|
/**
|
|
@@ -21274,18 +21460,6 @@ export declare interface DeclarativeOrganizationInfo {
|
|
|
21274
21460
|
*/
|
|
21275
21461
|
hostname: string;
|
|
21276
21462
|
allowedOrigins?: Array<string>;
|
|
21277
|
-
/**
|
|
21278
|
-
* URI of the authentication provider.
|
|
21279
|
-
*/
|
|
21280
|
-
oauthIssuerLocation?: string;
|
|
21281
|
-
/**
|
|
21282
|
-
* Identifier of the authentication provider
|
|
21283
|
-
*/
|
|
21284
|
-
oauthClientId?: string;
|
|
21285
|
-
/**
|
|
21286
|
-
* Communication secret of the authentication provider (never returned back).
|
|
21287
|
-
*/
|
|
21288
|
-
oauthClientSecret?: string;
|
|
21289
21463
|
permissions: Array<DeclarativeOrganizationPermission>;
|
|
21290
21464
|
/**
|
|
21291
21465
|
* Early access defined on level Organization
|
|
@@ -21296,24 +21470,6 @@ export declare interface DeclarativeOrganizationInfo {
|
|
|
21296
21470
|
* Early access defined on level Organization
|
|
21297
21471
|
*/
|
|
21298
21472
|
earlyAccessValues?: Array<string>;
|
|
21299
|
-
/**
|
|
21300
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
21301
|
-
*/
|
|
21302
|
-
oauthIssuerId?: string;
|
|
21303
|
-
/**
|
|
21304
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
21305
|
-
*/
|
|
21306
|
-
oauthSubjectIdClaim?: string;
|
|
21307
|
-
/**
|
|
21308
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
21309
|
-
*/
|
|
21310
|
-
oauthCustomAuthAttributes?: {
|
|
21311
|
-
[key: string]: string;
|
|
21312
|
-
};
|
|
21313
|
-
/**
|
|
21314
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
21315
|
-
*/
|
|
21316
|
-
oauthCustomScopes?: Array<string> | null;
|
|
21317
21473
|
/**
|
|
21318
21474
|
* A list of organization settings.
|
|
21319
21475
|
*/
|
|
@@ -44532,7 +44688,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
44532
44688
|
* API identifier of an object
|
|
44533
44689
|
*/
|
|
44534
44690
|
id: string;
|
|
44535
|
-
meta?:
|
|
44691
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44536
44692
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
44537
44693
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
44538
44694
|
}
|
|
@@ -44586,19 +44742,15 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
44586
44742
|
export declare interface JsonApiAggregatedFactOutList {
|
|
44587
44743
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
44588
44744
|
links?: ListLinks;
|
|
44589
|
-
meta?:
|
|
44745
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44590
44746
|
/**
|
|
44591
44747
|
* Included resources
|
|
44592
44748
|
*/
|
|
44593
44749
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
44594
44750
|
}
|
|
44595
44751
|
|
|
44596
|
-
export declare interface JsonApiAggregatedFactOutListMeta {
|
|
44597
|
-
page?: PageMetadata;
|
|
44598
|
-
}
|
|
44599
|
-
|
|
44600
44752
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
44601
|
-
dataset?:
|
|
44753
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
44602
44754
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
44603
44755
|
}
|
|
44604
44756
|
|
|
@@ -44621,7 +44773,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
44621
44773
|
* API identifier of an object
|
|
44622
44774
|
*/
|
|
44623
44775
|
id: string;
|
|
44624
|
-
meta?:
|
|
44776
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44625
44777
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
44626
44778
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
44627
44779
|
links?: ObjectLinks;
|
|
@@ -44722,7 +44874,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
44722
44874
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
44723
44875
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
44724
44876
|
links?: ListLinks;
|
|
44725
|
-
meta?:
|
|
44877
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44726
44878
|
/**
|
|
44727
44879
|
* Included resources
|
|
44728
44880
|
*/
|
|
@@ -44734,7 +44886,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
44734
44886
|
* List of valid permissions for a logged-in user.
|
|
44735
44887
|
*/
|
|
44736
44888
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
44737
|
-
origin?:
|
|
44889
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
44738
44890
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
44739
44891
|
}
|
|
44740
44892
|
|
|
@@ -44760,7 +44912,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
44760
44912
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
44761
44913
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
44762
44914
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
44763
|
-
datasets?:
|
|
44915
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
44764
44916
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
44765
44917
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
44766
44918
|
}
|
|
@@ -44938,7 +45090,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
44938
45090
|
export declare interface JsonApiApiTokenOutList {
|
|
44939
45091
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
44940
45092
|
links?: ListLinks;
|
|
44941
|
-
meta?:
|
|
45093
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44942
45094
|
}
|
|
44943
45095
|
|
|
44944
45096
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -44978,18 +45130,7 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
44978
45130
|
* API identifier of an object
|
|
44979
45131
|
*/
|
|
44980
45132
|
id: string;
|
|
44981
|
-
attributes?:
|
|
44982
|
-
}
|
|
44983
|
-
|
|
44984
|
-
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
44985
|
-
title?: string;
|
|
44986
|
-
description?: string;
|
|
44987
|
-
tags?: Array<string>;
|
|
44988
|
-
areRelationsValid?: boolean;
|
|
44989
|
-
/**
|
|
44990
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44991
|
-
*/
|
|
44992
|
-
content?: object;
|
|
45133
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
44993
45134
|
}
|
|
44994
45135
|
|
|
44995
45136
|
export declare interface JsonApiAttributeHierarchyInDocument {
|
|
@@ -45028,7 +45169,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
45028
45169
|
* API identifier of an object
|
|
45029
45170
|
*/
|
|
45030
45171
|
id: string;
|
|
45031
|
-
meta?:
|
|
45172
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45032
45173
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
45033
45174
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
45034
45175
|
}
|
|
@@ -45066,7 +45207,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
45066
45207
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
45067
45208
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
45068
45209
|
links?: ListLinks;
|
|
45069
|
-
meta?:
|
|
45210
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45070
45211
|
/**
|
|
45071
45212
|
* Included resources
|
|
45072
45213
|
*/
|
|
@@ -45076,7 +45217,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
45076
45217
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
45077
45218
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45078
45219
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45079
|
-
attributes?:
|
|
45220
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
45080
45221
|
}
|
|
45081
45222
|
|
|
45082
45223
|
export declare const JsonApiAttributeHierarchyOutTypeEnum: {
|
|
@@ -45094,7 +45235,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
45094
45235
|
* API identifier of an object
|
|
45095
45236
|
*/
|
|
45096
45237
|
id: string;
|
|
45097
|
-
meta?:
|
|
45238
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45098
45239
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
45099
45240
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
45100
45241
|
links?: ObjectLinks;
|
|
@@ -45118,7 +45259,18 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
45118
45259
|
* API identifier of an object
|
|
45119
45260
|
*/
|
|
45120
45261
|
id: string;
|
|
45121
|
-
attributes?:
|
|
45262
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
45263
|
+
}
|
|
45264
|
+
|
|
45265
|
+
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
45266
|
+
title?: string;
|
|
45267
|
+
description?: string;
|
|
45268
|
+
tags?: Array<string>;
|
|
45269
|
+
areRelationsValid?: boolean;
|
|
45270
|
+
/**
|
|
45271
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45272
|
+
*/
|
|
45273
|
+
content?: object;
|
|
45122
45274
|
}
|
|
45123
45275
|
|
|
45124
45276
|
export declare interface JsonApiAttributeHierarchyPatchDocument {
|
|
@@ -45157,7 +45309,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
45157
45309
|
* API identifier of an object
|
|
45158
45310
|
*/
|
|
45159
45311
|
id: string;
|
|
45160
|
-
meta?:
|
|
45312
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45161
45313
|
attributes?: JsonApiAttributeOutAttributes;
|
|
45162
45314
|
relationships?: JsonApiAttributeOutRelationships;
|
|
45163
45315
|
}
|
|
@@ -45235,7 +45387,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
45235
45387
|
export declare interface JsonApiAttributeOutList {
|
|
45236
45388
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
45237
45389
|
links?: ListLinks;
|
|
45238
|
-
meta?:
|
|
45390
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45239
45391
|
/**
|
|
45240
45392
|
* Included resources
|
|
45241
45393
|
*/
|
|
@@ -45243,7 +45395,7 @@ export declare interface JsonApiAttributeOutList {
|
|
|
45243
45395
|
}
|
|
45244
45396
|
|
|
45245
45397
|
export declare interface JsonApiAttributeOutRelationships {
|
|
45246
|
-
dataset?:
|
|
45398
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
45247
45399
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
45248
45400
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
45249
45401
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -45256,6 +45408,10 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
45256
45408
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
45257
45409
|
}
|
|
45258
45410
|
|
|
45411
|
+
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
45412
|
+
data: JsonApiDatasetLinkage | null;
|
|
45413
|
+
}
|
|
45414
|
+
|
|
45259
45415
|
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
45260
45416
|
data: JsonApiLabelLinkage | null;
|
|
45261
45417
|
}
|
|
@@ -45275,7 +45431,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
45275
45431
|
* API identifier of an object
|
|
45276
45432
|
*/
|
|
45277
45433
|
id: string;
|
|
45278
|
-
meta?:
|
|
45434
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45279
45435
|
attributes?: JsonApiAttributeOutAttributes;
|
|
45280
45436
|
relationships?: JsonApiAttributeOutRelationships;
|
|
45281
45437
|
links?: ObjectLinks;
|
|
@@ -45299,67 +45455,14 @@ export declare interface JsonApiAutomationIn {
|
|
|
45299
45455
|
* API identifier of an object
|
|
45300
45456
|
*/
|
|
45301
45457
|
id: string;
|
|
45302
|
-
attributes?:
|
|
45303
|
-
relationships?:
|
|
45304
|
-
}
|
|
45305
|
-
|
|
45306
|
-
export declare interface JsonApiAutomationInAttributes {
|
|
45307
|
-
title?: string;
|
|
45308
|
-
description?: string;
|
|
45309
|
-
tags?: Array<string>;
|
|
45310
|
-
areRelationsValid?: boolean;
|
|
45311
|
-
/**
|
|
45312
|
-
* Additional details to be included in the automated message.
|
|
45313
|
-
*/
|
|
45314
|
-
details?: object;
|
|
45315
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
45316
|
-
/**
|
|
45317
|
-
* Current state of the automation.
|
|
45318
|
-
*/
|
|
45319
|
-
state?: JsonApiAutomationInAttributesStateEnum;
|
|
45320
|
-
/**
|
|
45321
|
-
* Specify automation evaluation mode.
|
|
45322
|
-
*/
|
|
45323
|
-
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
45324
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
45325
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
45326
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
45327
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
45328
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
45329
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
45330
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
45331
|
-
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
45332
|
-
/**
|
|
45333
|
-
* External recipients of the automation action results.
|
|
45334
|
-
*/
|
|
45335
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
45458
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45459
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45336
45460
|
}
|
|
45337
45461
|
|
|
45338
|
-
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
45339
|
-
readonly SHARED: "SHARED";
|
|
45340
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
45341
|
-
};
|
|
45342
|
-
|
|
45343
|
-
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
45344
|
-
|
|
45345
|
-
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
45346
|
-
readonly ACTIVE: "ACTIVE";
|
|
45347
|
-
readonly PAUSED: "PAUSED";
|
|
45348
|
-
};
|
|
45349
|
-
|
|
45350
|
-
export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
45351
|
-
|
|
45352
45462
|
export declare interface JsonApiAutomationInDocument {
|
|
45353
45463
|
data: JsonApiAutomationIn;
|
|
45354
45464
|
}
|
|
45355
45465
|
|
|
45356
|
-
export declare interface JsonApiAutomationInRelationships {
|
|
45357
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
45358
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
45359
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
45360
|
-
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
45361
|
-
}
|
|
45362
|
-
|
|
45363
45466
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
45364
45467
|
readonly AUTOMATION: "automation";
|
|
45365
45468
|
};
|
|
@@ -45392,7 +45495,7 @@ export declare interface JsonApiAutomationOut {
|
|
|
45392
45495
|
* API identifier of an object
|
|
45393
45496
|
*/
|
|
45394
45497
|
id: string;
|
|
45395
|
-
meta?:
|
|
45498
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45396
45499
|
attributes?: JsonApiAutomationOutAttributes;
|
|
45397
45500
|
relationships?: JsonApiAutomationOutRelationships;
|
|
45398
45501
|
}
|
|
@@ -45406,7 +45509,7 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45406
45509
|
* Additional details to be included in the automated message.
|
|
45407
45510
|
*/
|
|
45408
45511
|
details?: object;
|
|
45409
|
-
metadata?:
|
|
45512
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
45410
45513
|
/**
|
|
45411
45514
|
* Current state of the automation.
|
|
45412
45515
|
*/
|
|
@@ -45415,42 +45518,22 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45415
45518
|
* Specify automation evaluation mode.
|
|
45416
45519
|
*/
|
|
45417
45520
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
45418
|
-
schedule?:
|
|
45419
|
-
alert?:
|
|
45420
|
-
tabularExports?: Array<
|
|
45421
|
-
visualExports?: Array<
|
|
45422
|
-
imageExports?: Array<
|
|
45423
|
-
rawExports?: Array<
|
|
45424
|
-
slidesExports?: Array<
|
|
45425
|
-
dashboardTabularExports?: Array<
|
|
45521
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
45522
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
45523
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
45524
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
45525
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
45526
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
45527
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
45528
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
45426
45529
|
/**
|
|
45427
45530
|
* External recipients of the automation action results.
|
|
45428
45531
|
*/
|
|
45429
|
-
externalRecipients?: Array<
|
|
45532
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
45430
45533
|
createdAt?: string;
|
|
45431
45534
|
modifiedAt?: string;
|
|
45432
45535
|
}
|
|
45433
45536
|
|
|
45434
|
-
export declare interface JsonApiAutomationOutAttributesAlert {
|
|
45435
|
-
execution: AlertAfm;
|
|
45436
|
-
condition: AlertCondition;
|
|
45437
|
-
/**
|
|
45438
|
-
* 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.
|
|
45439
|
-
*/
|
|
45440
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
45441
|
-
}
|
|
45442
|
-
|
|
45443
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
45444
|
-
readonly ALWAYS: "ALWAYS";
|
|
45445
|
-
readonly ONCE: "ONCE";
|
|
45446
|
-
};
|
|
45447
|
-
|
|
45448
|
-
export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
45449
|
-
|
|
45450
|
-
export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
45451
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
45452
|
-
}
|
|
45453
|
-
|
|
45454
45537
|
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
45455
45538
|
readonly SHARED: "SHARED";
|
|
45456
45539
|
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
@@ -45458,53 +45541,6 @@ export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
|
45458
45541
|
|
|
45459
45542
|
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
45460
45543
|
|
|
45461
|
-
export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
45462
|
-
/**
|
|
45463
|
-
* E-mail address to send notifications from.
|
|
45464
|
-
*/
|
|
45465
|
-
email: string;
|
|
45466
|
-
}
|
|
45467
|
-
|
|
45468
|
-
export declare interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
45469
|
-
requestPayload: ImageExportRequest;
|
|
45470
|
-
}
|
|
45471
|
-
|
|
45472
|
-
/**
|
|
45473
|
-
* Additional information for the automation.
|
|
45474
|
-
*/
|
|
45475
|
-
export declare interface JsonApiAutomationOutAttributesMetadata {
|
|
45476
|
-
[key: string]: any;
|
|
45477
|
-
widget?: string;
|
|
45478
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
45479
|
-
}
|
|
45480
|
-
|
|
45481
|
-
export declare interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
45482
|
-
requestPayload: RawExportAutomationRequest;
|
|
45483
|
-
}
|
|
45484
|
-
|
|
45485
|
-
export declare interface JsonApiAutomationOutAttributesSchedule {
|
|
45486
|
-
/**
|
|
45487
|
-
* 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.
|
|
45488
|
-
*/
|
|
45489
|
-
cron: string;
|
|
45490
|
-
/**
|
|
45491
|
-
* Human-readable description of the cron expression.
|
|
45492
|
-
*/
|
|
45493
|
-
cronDescription?: string;
|
|
45494
|
-
/**
|
|
45495
|
-
* Timezone in which the schedule is defined.
|
|
45496
|
-
*/
|
|
45497
|
-
timezone: string;
|
|
45498
|
-
/**
|
|
45499
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
45500
|
-
*/
|
|
45501
|
-
firstRun?: string;
|
|
45502
|
-
}
|
|
45503
|
-
|
|
45504
|
-
export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
45505
|
-
requestPayload: SlidesExportRequest;
|
|
45506
|
-
}
|
|
45507
|
-
|
|
45508
45544
|
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
45509
45545
|
readonly ACTIVE: "ACTIVE";
|
|
45510
45546
|
readonly PAUSED: "PAUSED";
|
|
@@ -45512,14 +45548,6 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
|
45512
45548
|
|
|
45513
45549
|
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
45514
45550
|
|
|
45515
|
-
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
45516
|
-
requestPayload: TabularExportRequest;
|
|
45517
|
-
}
|
|
45518
|
-
|
|
45519
|
-
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
45520
|
-
requestPayload: VisualExportRequest;
|
|
45521
|
-
}
|
|
45522
|
-
|
|
45523
45551
|
export declare interface JsonApiAutomationOutDocument {
|
|
45524
45552
|
data: JsonApiAutomationOut;
|
|
45525
45553
|
links?: ObjectLinks;
|
|
@@ -45540,7 +45568,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
45540
45568
|
export declare interface JsonApiAutomationOutList {
|
|
45541
45569
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
45542
45570
|
links?: ListLinks;
|
|
45543
|
-
meta?:
|
|
45571
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45544
45572
|
/**
|
|
45545
45573
|
* Included resources
|
|
45546
45574
|
*/
|
|
@@ -45548,12 +45576,12 @@ export declare interface JsonApiAutomationOutList {
|
|
|
45548
45576
|
}
|
|
45549
45577
|
|
|
45550
45578
|
export declare interface JsonApiAutomationOutRelationships {
|
|
45551
|
-
notificationChannel?:
|
|
45552
|
-
analyticalDashboard?:
|
|
45579
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
45580
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
45553
45581
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45554
45582
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45555
|
-
exportDefinitions?:
|
|
45556
|
-
recipients?:
|
|
45583
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
45584
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
45557
45585
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
45558
45586
|
}
|
|
45559
45587
|
|
|
@@ -45564,24 +45592,6 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
|
45564
45592
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
45565
45593
|
}
|
|
45566
45594
|
|
|
45567
|
-
export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
45568
|
-
/**
|
|
45569
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45570
|
-
*/
|
|
45571
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
45572
|
-
}
|
|
45573
|
-
|
|
45574
|
-
export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
45575
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
45576
|
-
}
|
|
45577
|
-
|
|
45578
|
-
export declare interface JsonApiAutomationOutRelationshipsRecipients {
|
|
45579
|
-
/**
|
|
45580
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45581
|
-
*/
|
|
45582
|
-
data: Array<JsonApiUserLinkage>;
|
|
45583
|
-
}
|
|
45584
|
-
|
|
45585
45595
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
45586
45596
|
readonly AUTOMATION: "automation";
|
|
45587
45597
|
};
|
|
@@ -45597,7 +45607,7 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
45597
45607
|
* API identifier of an object
|
|
45598
45608
|
*/
|
|
45599
45609
|
id: string;
|
|
45600
|
-
meta?:
|
|
45610
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45601
45611
|
attributes?: JsonApiAutomationOutAttributes;
|
|
45602
45612
|
relationships?: JsonApiAutomationOutRelationships;
|
|
45603
45613
|
links?: ObjectLinks;
|
|
@@ -45621,14 +45631,164 @@ export declare interface JsonApiAutomationPatch {
|
|
|
45621
45631
|
* API identifier of an object
|
|
45622
45632
|
*/
|
|
45623
45633
|
id: string;
|
|
45624
|
-
attributes?:
|
|
45625
|
-
relationships?:
|
|
45634
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45635
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45636
|
+
}
|
|
45637
|
+
|
|
45638
|
+
export declare interface JsonApiAutomationPatchAttributes {
|
|
45639
|
+
title?: string;
|
|
45640
|
+
description?: string;
|
|
45641
|
+
tags?: Array<string>;
|
|
45642
|
+
areRelationsValid?: boolean;
|
|
45643
|
+
/**
|
|
45644
|
+
* Additional details to be included in the automated message.
|
|
45645
|
+
*/
|
|
45646
|
+
details?: object;
|
|
45647
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
45648
|
+
/**
|
|
45649
|
+
* Current state of the automation.
|
|
45650
|
+
*/
|
|
45651
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
45652
|
+
/**
|
|
45653
|
+
* Specify automation evaluation mode.
|
|
45654
|
+
*/
|
|
45655
|
+
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
45656
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
45657
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
45658
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
45659
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
45660
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
45661
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
45662
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
45663
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
45664
|
+
/**
|
|
45665
|
+
* External recipients of the automation action results.
|
|
45666
|
+
*/
|
|
45667
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
45668
|
+
}
|
|
45669
|
+
|
|
45670
|
+
export declare interface JsonApiAutomationPatchAttributesAlert {
|
|
45671
|
+
execution: AlertAfm;
|
|
45672
|
+
condition: AlertCondition;
|
|
45673
|
+
/**
|
|
45674
|
+
* 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.
|
|
45675
|
+
*/
|
|
45676
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
45677
|
+
}
|
|
45678
|
+
|
|
45679
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
45680
|
+
readonly ALWAYS: "ALWAYS";
|
|
45681
|
+
readonly ONCE: "ONCE";
|
|
45682
|
+
};
|
|
45683
|
+
|
|
45684
|
+
export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
45685
|
+
|
|
45686
|
+
export declare interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
45687
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
45688
|
+
}
|
|
45689
|
+
|
|
45690
|
+
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
45691
|
+
readonly SHARED: "SHARED";
|
|
45692
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
45693
|
+
};
|
|
45694
|
+
|
|
45695
|
+
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
45696
|
+
|
|
45697
|
+
export declare interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
45698
|
+
/**
|
|
45699
|
+
* E-mail address to send notifications from.
|
|
45700
|
+
*/
|
|
45701
|
+
email: string;
|
|
45702
|
+
}
|
|
45703
|
+
|
|
45704
|
+
export declare interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
45705
|
+
requestPayload: ImageExportRequest;
|
|
45706
|
+
}
|
|
45707
|
+
|
|
45708
|
+
/**
|
|
45709
|
+
* Additional information for the automation.
|
|
45710
|
+
*/
|
|
45711
|
+
export declare interface JsonApiAutomationPatchAttributesMetadata {
|
|
45712
|
+
[key: string]: any;
|
|
45713
|
+
widget?: string;
|
|
45714
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
45715
|
+
}
|
|
45716
|
+
|
|
45717
|
+
export declare interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
45718
|
+
requestPayload: RawExportAutomationRequest;
|
|
45719
|
+
}
|
|
45720
|
+
|
|
45721
|
+
export declare interface JsonApiAutomationPatchAttributesSchedule {
|
|
45722
|
+
/**
|
|
45723
|
+
* 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.
|
|
45724
|
+
*/
|
|
45725
|
+
cron: string;
|
|
45726
|
+
/**
|
|
45727
|
+
* Human-readable description of the cron expression.
|
|
45728
|
+
*/
|
|
45729
|
+
cronDescription?: string;
|
|
45730
|
+
/**
|
|
45731
|
+
* Timezone in which the schedule is defined.
|
|
45732
|
+
*/
|
|
45733
|
+
timezone: string;
|
|
45734
|
+
/**
|
|
45735
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
45736
|
+
*/
|
|
45737
|
+
firstRun?: string;
|
|
45738
|
+
}
|
|
45739
|
+
|
|
45740
|
+
export declare interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
45741
|
+
requestPayload: SlidesExportRequest;
|
|
45742
|
+
}
|
|
45743
|
+
|
|
45744
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
45745
|
+
readonly ACTIVE: "ACTIVE";
|
|
45746
|
+
readonly PAUSED: "PAUSED";
|
|
45747
|
+
};
|
|
45748
|
+
|
|
45749
|
+
export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
45750
|
+
|
|
45751
|
+
export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
45752
|
+
requestPayload: TabularExportRequest;
|
|
45753
|
+
}
|
|
45754
|
+
|
|
45755
|
+
export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
45756
|
+
requestPayload: VisualExportRequest;
|
|
45626
45757
|
}
|
|
45627
45758
|
|
|
45628
45759
|
export declare interface JsonApiAutomationPatchDocument {
|
|
45629
45760
|
data: JsonApiAutomationPatch;
|
|
45630
45761
|
}
|
|
45631
45762
|
|
|
45763
|
+
export declare interface JsonApiAutomationPatchRelationships {
|
|
45764
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
45765
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
45766
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
45767
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
45768
|
+
}
|
|
45769
|
+
|
|
45770
|
+
export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
45771
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
45772
|
+
}
|
|
45773
|
+
|
|
45774
|
+
export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
45775
|
+
/**
|
|
45776
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45777
|
+
*/
|
|
45778
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
45779
|
+
}
|
|
45780
|
+
|
|
45781
|
+
export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
45782
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
45783
|
+
}
|
|
45784
|
+
|
|
45785
|
+
export declare interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
45786
|
+
/**
|
|
45787
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45788
|
+
*/
|
|
45789
|
+
data: Array<JsonApiUserLinkage>;
|
|
45790
|
+
}
|
|
45791
|
+
|
|
45632
45792
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
45633
45793
|
readonly AUTOMATION: "automation";
|
|
45634
45794
|
};
|
|
@@ -45774,7 +45934,11 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
45774
45934
|
export declare interface JsonApiColorPaletteOutList {
|
|
45775
45935
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
45776
45936
|
links?: ListLinks;
|
|
45777
|
-
meta?:
|
|
45937
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45938
|
+
}
|
|
45939
|
+
|
|
45940
|
+
export declare interface JsonApiColorPaletteOutListMeta {
|
|
45941
|
+
page?: PageMetadata;
|
|
45778
45942
|
}
|
|
45779
45943
|
|
|
45780
45944
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -45847,15 +46011,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
45847
46011
|
* API identifier of an object
|
|
45848
46012
|
*/
|
|
45849
46013
|
id: string;
|
|
45850
|
-
attributes?:
|
|
45851
|
-
}
|
|
45852
|
-
|
|
45853
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
45854
|
-
lastRotation?: string;
|
|
45855
|
-
/**
|
|
45856
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
45857
|
-
*/
|
|
45858
|
-
rotationInterval?: string;
|
|
46014
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
45859
46015
|
}
|
|
45860
46016
|
|
|
45861
46017
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -45880,7 +46036,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
45880
46036
|
* API identifier of an object
|
|
45881
46037
|
*/
|
|
45882
46038
|
id: string;
|
|
45883
|
-
attributes?:
|
|
46039
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
45884
46040
|
}
|
|
45885
46041
|
|
|
45886
46042
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -45906,7 +46062,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
45906
46062
|
* API identifier of an object
|
|
45907
46063
|
*/
|
|
45908
46064
|
id: string;
|
|
45909
|
-
attributes?:
|
|
46065
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46066
|
+
}
|
|
46067
|
+
|
|
46068
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
46069
|
+
lastRotation?: string;
|
|
46070
|
+
/**
|
|
46071
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46072
|
+
*/
|
|
46073
|
+
rotationInterval?: string;
|
|
45910
46074
|
}
|
|
45911
46075
|
|
|
45912
46076
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -45974,7 +46138,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
45974
46138
|
export declare interface JsonApiCspDirectiveOutList {
|
|
45975
46139
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
45976
46140
|
links?: ListLinks;
|
|
45977
|
-
meta?:
|
|
46141
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45978
46142
|
}
|
|
45979
46143
|
|
|
45980
46144
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -46068,7 +46232,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
46068
46232
|
* API identifier of an object
|
|
46069
46233
|
*/
|
|
46070
46234
|
id: string;
|
|
46071
|
-
meta?:
|
|
46235
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46072
46236
|
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46073
46237
|
}
|
|
46074
46238
|
|
|
@@ -46091,7 +46255,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
46091
46255
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
46092
46256
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
46093
46257
|
links?: ListLinks;
|
|
46094
|
-
meta?:
|
|
46258
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46095
46259
|
}
|
|
46096
46260
|
|
|
46097
46261
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -46109,7 +46273,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
46109
46273
|
* API identifier of an object
|
|
46110
46274
|
*/
|
|
46111
46275
|
id: string;
|
|
46112
|
-
meta?:
|
|
46276
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46113
46277
|
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46114
46278
|
links?: ObjectLinks;
|
|
46115
46279
|
}
|
|
@@ -46190,7 +46354,7 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
46190
46354
|
* API identifier of an object
|
|
46191
46355
|
*/
|
|
46192
46356
|
id: string;
|
|
46193
|
-
attributes?:
|
|
46357
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46194
46358
|
}
|
|
46195
46359
|
|
|
46196
46360
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -46229,7 +46393,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
46229
46393
|
* API identifier of an object
|
|
46230
46394
|
*/
|
|
46231
46395
|
id: string;
|
|
46232
|
-
meta?:
|
|
46396
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46233
46397
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
46234
46398
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
46235
46399
|
}
|
|
@@ -46262,7 +46426,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
46262
46426
|
export declare interface JsonApiDashboardPluginOutList {
|
|
46263
46427
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
46264
46428
|
links?: ListLinks;
|
|
46265
|
-
meta?:
|
|
46429
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46266
46430
|
/**
|
|
46267
46431
|
* Included resources
|
|
46268
46432
|
*/
|
|
@@ -46289,7 +46453,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
46289
46453
|
* API identifier of an object
|
|
46290
46454
|
*/
|
|
46291
46455
|
id: string;
|
|
46292
|
-
meta?:
|
|
46456
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46293
46457
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
46294
46458
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
46295
46459
|
links?: ObjectLinks;
|
|
@@ -46313,7 +46477,18 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
46313
46477
|
* API identifier of an object
|
|
46314
46478
|
*/
|
|
46315
46479
|
id: string;
|
|
46316
|
-
attributes?:
|
|
46480
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46481
|
+
}
|
|
46482
|
+
|
|
46483
|
+
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
46484
|
+
title?: string;
|
|
46485
|
+
description?: string;
|
|
46486
|
+
tags?: Array<string>;
|
|
46487
|
+
areRelationsValid?: boolean;
|
|
46488
|
+
/**
|
|
46489
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46490
|
+
*/
|
|
46491
|
+
content?: object;
|
|
46317
46492
|
}
|
|
46318
46493
|
|
|
46319
46494
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -46338,18 +46513,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
46338
46513
|
* API identifier of an object
|
|
46339
46514
|
*/
|
|
46340
46515
|
id?: string;
|
|
46341
|
-
attributes?:
|
|
46342
|
-
}
|
|
46343
|
-
|
|
46344
|
-
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
46345
|
-
title?: string;
|
|
46346
|
-
description?: string;
|
|
46347
|
-
tags?: Array<string>;
|
|
46348
|
-
areRelationsValid?: boolean;
|
|
46349
|
-
/**
|
|
46350
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46351
|
-
*/
|
|
46352
|
-
content?: object;
|
|
46516
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46353
46517
|
}
|
|
46354
46518
|
|
|
46355
46519
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -46388,7 +46552,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
46388
46552
|
* API identifier of an object
|
|
46389
46553
|
*/
|
|
46390
46554
|
id: string;
|
|
46391
|
-
meta?:
|
|
46555
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46392
46556
|
attributes: JsonApiDatasetOutAttributes;
|
|
46393
46557
|
relationships?: JsonApiDatasetOutRelationships;
|
|
46394
46558
|
}
|
|
@@ -46514,40 +46678,18 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
46514
46678
|
export declare interface JsonApiDatasetOutList {
|
|
46515
46679
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
46516
46680
|
links?: ListLinks;
|
|
46517
|
-
meta?:
|
|
46681
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46518
46682
|
/**
|
|
46519
46683
|
* Included resources
|
|
46520
46684
|
*/
|
|
46521
46685
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
46522
46686
|
}
|
|
46523
46687
|
|
|
46524
|
-
export declare interface JsonApiDatasetOutMeta {
|
|
46525
|
-
origin?: JsonApiDatasetOutMetaOrigin;
|
|
46526
|
-
}
|
|
46527
|
-
|
|
46528
|
-
export declare interface JsonApiDatasetOutMetaOrigin {
|
|
46529
|
-
/**
|
|
46530
|
-
* defines type of the origin of the entity
|
|
46531
|
-
*/
|
|
46532
|
-
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
46533
|
-
/**
|
|
46534
|
-
* defines id of the workspace where the entity comes from
|
|
46535
|
-
*/
|
|
46536
|
-
originId: string;
|
|
46537
|
-
}
|
|
46538
|
-
|
|
46539
|
-
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
46540
|
-
readonly NATIVE: "NATIVE";
|
|
46541
|
-
readonly PARENT: "PARENT";
|
|
46542
|
-
};
|
|
46543
|
-
|
|
46544
|
-
export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
46545
|
-
|
|
46546
46688
|
export declare interface JsonApiDatasetOutRelationships {
|
|
46547
|
-
attributes?:
|
|
46548
|
-
facts?:
|
|
46689
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
46690
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
46549
46691
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
46550
|
-
references?:
|
|
46692
|
+
references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
46551
46693
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
46552
46694
|
}
|
|
46553
46695
|
|
|
@@ -46558,27 +46700,6 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
46558
46700
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
46559
46701
|
}
|
|
46560
46702
|
|
|
46561
|
-
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
46562
|
-
/**
|
|
46563
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46564
|
-
*/
|
|
46565
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
46566
|
-
}
|
|
46567
|
-
|
|
46568
|
-
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
46569
|
-
/**
|
|
46570
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46571
|
-
*/
|
|
46572
|
-
data: Array<JsonApiFactLinkage>;
|
|
46573
|
-
}
|
|
46574
|
-
|
|
46575
|
-
export declare interface JsonApiDatasetOutRelationshipsReferences {
|
|
46576
|
-
/**
|
|
46577
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46578
|
-
*/
|
|
46579
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
46580
|
-
}
|
|
46581
|
-
|
|
46582
46703
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
46583
46704
|
/**
|
|
46584
46705
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -46601,7 +46722,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
46601
46722
|
* API identifier of an object
|
|
46602
46723
|
*/
|
|
46603
46724
|
id: string;
|
|
46604
|
-
meta?:
|
|
46725
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46605
46726
|
attributes: JsonApiDatasetOutAttributes;
|
|
46606
46727
|
relationships?: JsonApiDatasetOutRelationships;
|
|
46607
46728
|
links?: ObjectLinks;
|
|
@@ -46677,7 +46798,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
46677
46798
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
46678
46799
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
46679
46800
|
links?: ListLinks;
|
|
46680
|
-
meta?:
|
|
46801
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46681
46802
|
}
|
|
46682
46803
|
|
|
46683
46804
|
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
@@ -46961,7 +47082,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
46961
47082
|
export declare interface JsonApiDataSourceOutList {
|
|
46962
47083
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
46963
47084
|
links?: ListLinks;
|
|
46964
|
-
meta?:
|
|
47085
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46965
47086
|
}
|
|
46966
47087
|
|
|
46967
47088
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -47139,7 +47260,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
47139
47260
|
export declare interface JsonApiEntitlementOutList {
|
|
47140
47261
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
47141
47262
|
links?: ListLinks;
|
|
47142
|
-
meta?:
|
|
47263
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47143
47264
|
}
|
|
47144
47265
|
|
|
47145
47266
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -47179,8 +47300,8 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
47179
47300
|
* API identifier of an object
|
|
47180
47301
|
*/
|
|
47181
47302
|
id: string;
|
|
47182
|
-
attributes?:
|
|
47183
|
-
relationships?:
|
|
47303
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47304
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47184
47305
|
}
|
|
47185
47306
|
|
|
47186
47307
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
@@ -47219,7 +47340,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
47219
47340
|
* API identifier of an object
|
|
47220
47341
|
*/
|
|
47221
47342
|
id: string;
|
|
47222
|
-
meta?:
|
|
47343
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47223
47344
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
47224
47345
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
47225
47346
|
}
|
|
@@ -47260,7 +47381,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
47260
47381
|
export declare interface JsonApiExportDefinitionOutList {
|
|
47261
47382
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
47262
47383
|
links?: ListLinks;
|
|
47263
|
-
meta?:
|
|
47384
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47264
47385
|
/**
|
|
47265
47386
|
* Included resources
|
|
47266
47387
|
*/
|
|
@@ -47269,16 +47390,12 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
47269
47390
|
|
|
47270
47391
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
47271
47392
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47272
|
-
analyticalDashboard?:
|
|
47393
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
47273
47394
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
47274
47395
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
47275
47396
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
47276
47397
|
}
|
|
47277
47398
|
|
|
47278
|
-
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
47279
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
47280
|
-
}
|
|
47281
|
-
|
|
47282
47399
|
export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
47283
47400
|
data: JsonApiAutomationLinkage | null;
|
|
47284
47401
|
}
|
|
@@ -47302,7 +47419,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
47302
47419
|
* API identifier of an object
|
|
47303
47420
|
*/
|
|
47304
47421
|
id: string;
|
|
47305
|
-
meta?:
|
|
47422
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47306
47423
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
47307
47424
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
47308
47425
|
links?: ObjectLinks;
|
|
@@ -47326,14 +47443,27 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
47326
47443
|
* API identifier of an object
|
|
47327
47444
|
*/
|
|
47328
47445
|
id: string;
|
|
47329
|
-
attributes?:
|
|
47330
|
-
relationships?:
|
|
47446
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47447
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47448
|
+
}
|
|
47449
|
+
|
|
47450
|
+
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
47451
|
+
title?: string;
|
|
47452
|
+
description?: string;
|
|
47453
|
+
tags?: Array<string>;
|
|
47454
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47455
|
+
areRelationsValid?: boolean;
|
|
47331
47456
|
}
|
|
47332
47457
|
|
|
47333
47458
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
47334
47459
|
data: JsonApiExportDefinitionPatch;
|
|
47335
47460
|
}
|
|
47336
47461
|
|
|
47462
|
+
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
47463
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47464
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
47465
|
+
}
|
|
47466
|
+
|
|
47337
47467
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
47338
47468
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47339
47469
|
};
|
|
@@ -47352,27 +47482,14 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
47352
47482
|
* API identifier of an object
|
|
47353
47483
|
*/
|
|
47354
47484
|
id?: string;
|
|
47355
|
-
attributes?:
|
|
47356
|
-
relationships?:
|
|
47357
|
-
}
|
|
47358
|
-
|
|
47359
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
47360
|
-
title?: string;
|
|
47361
|
-
description?: string;
|
|
47362
|
-
tags?: Array<string>;
|
|
47363
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47364
|
-
areRelationsValid?: boolean;
|
|
47485
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47486
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47365
47487
|
}
|
|
47366
47488
|
|
|
47367
47489
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
47368
47490
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
47369
47491
|
}
|
|
47370
47492
|
|
|
47371
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
47372
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47373
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
47374
|
-
}
|
|
47375
|
-
|
|
47376
47493
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
47377
47494
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47378
47495
|
};
|
|
@@ -47478,7 +47595,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
47478
47595
|
export declare interface JsonApiExportTemplateOutList {
|
|
47479
47596
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
47480
47597
|
links?: ListLinks;
|
|
47481
|
-
meta?:
|
|
47598
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47482
47599
|
}
|
|
47483
47600
|
|
|
47484
47601
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -47591,7 +47708,7 @@ export declare interface JsonApiFactOut {
|
|
|
47591
47708
|
* API identifier of an object
|
|
47592
47709
|
*/
|
|
47593
47710
|
id: string;
|
|
47594
|
-
meta?:
|
|
47711
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47595
47712
|
attributes?: JsonApiFactOutAttributes;
|
|
47596
47713
|
relationships?: JsonApiFactOutRelationships;
|
|
47597
47714
|
}
|
|
@@ -47633,7 +47750,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
47633
47750
|
export declare interface JsonApiFactOutList {
|
|
47634
47751
|
data: Array<JsonApiFactOutWithLinks>;
|
|
47635
47752
|
links?: ListLinks;
|
|
47636
|
-
meta?:
|
|
47753
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47637
47754
|
/**
|
|
47638
47755
|
* Included resources
|
|
47639
47756
|
*/
|
|
@@ -47641,11 +47758,7 @@ export declare interface JsonApiFactOutList {
|
|
|
47641
47758
|
}
|
|
47642
47759
|
|
|
47643
47760
|
export declare interface JsonApiFactOutRelationships {
|
|
47644
|
-
dataset?:
|
|
47645
|
-
}
|
|
47646
|
-
|
|
47647
|
-
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
47648
|
-
data: JsonApiDatasetLinkage | null;
|
|
47761
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
47649
47762
|
}
|
|
47650
47763
|
|
|
47651
47764
|
export declare const JsonApiFactOutTypeEnum: {
|
|
@@ -47663,7 +47776,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
47663
47776
|
* API identifier of an object
|
|
47664
47777
|
*/
|
|
47665
47778
|
id: string;
|
|
47666
|
-
meta?:
|
|
47779
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47667
47780
|
attributes?: JsonApiFactOutAttributes;
|
|
47668
47781
|
relationships?: JsonApiFactOutRelationships;
|
|
47669
47782
|
links?: ObjectLinks;
|
|
@@ -47726,7 +47839,7 @@ export declare interface JsonApiFilterContextOut {
|
|
|
47726
47839
|
* API identifier of an object
|
|
47727
47840
|
*/
|
|
47728
47841
|
id: string;
|
|
47729
|
-
meta?:
|
|
47842
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47730
47843
|
attributes: JsonApiFilterContextOutAttributes;
|
|
47731
47844
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
47732
47845
|
}
|
|
@@ -47762,7 +47875,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
47762
47875
|
export declare interface JsonApiFilterContextOutList {
|
|
47763
47876
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
47764
47877
|
links?: ListLinks;
|
|
47765
|
-
meta?:
|
|
47878
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47766
47879
|
/**
|
|
47767
47880
|
* Included resources
|
|
47768
47881
|
*/
|
|
@@ -47770,8 +47883,8 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
47770
47883
|
}
|
|
47771
47884
|
|
|
47772
47885
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
47773
|
-
attributes?:
|
|
47774
|
-
datasets?:
|
|
47886
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
47887
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
47775
47888
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
47776
47889
|
}
|
|
47777
47890
|
|
|
@@ -47790,7 +47903,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
47790
47903
|
* API identifier of an object
|
|
47791
47904
|
*/
|
|
47792
47905
|
id: string;
|
|
47793
|
-
meta?:
|
|
47906
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47794
47907
|
attributes: JsonApiFilterContextOutAttributes;
|
|
47795
47908
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
47796
47909
|
links?: ObjectLinks;
|
|
@@ -47865,7 +47978,7 @@ export declare interface JsonApiFilterViewIn {
|
|
|
47865
47978
|
*/
|
|
47866
47979
|
id: string;
|
|
47867
47980
|
attributes: JsonApiFilterViewOutAttributes;
|
|
47868
|
-
relationships?:
|
|
47981
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
47869
47982
|
}
|
|
47870
47983
|
|
|
47871
47984
|
export declare interface JsonApiFilterViewInDocument {
|
|
@@ -47891,7 +48004,7 @@ export declare interface JsonApiFilterViewOut {
|
|
|
47891
48004
|
*/
|
|
47892
48005
|
id: string;
|
|
47893
48006
|
attributes: JsonApiFilterViewOutAttributes;
|
|
47894
|
-
relationships?:
|
|
48007
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
47895
48008
|
}
|
|
47896
48009
|
|
|
47897
48010
|
export declare interface JsonApiFilterViewOutAttributes {
|
|
@@ -47929,22 +48042,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
47929
48042
|
export declare interface JsonApiFilterViewOutList {
|
|
47930
48043
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
47931
48044
|
links?: ListLinks;
|
|
47932
|
-
meta?:
|
|
48045
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47933
48046
|
/**
|
|
47934
48047
|
* Included resources
|
|
47935
48048
|
*/
|
|
47936
48049
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
47937
48050
|
}
|
|
47938
48051
|
|
|
47939
|
-
export declare interface JsonApiFilterViewOutRelationships {
|
|
47940
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
47941
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
47942
|
-
}
|
|
47943
|
-
|
|
47944
|
-
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
47945
|
-
data: JsonApiUserLinkage | null;
|
|
47946
|
-
}
|
|
47947
|
-
|
|
47948
48052
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
47949
48053
|
readonly FILTER_VIEW: "filterView";
|
|
47950
48054
|
};
|
|
@@ -47961,7 +48065,7 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
47961
48065
|
*/
|
|
47962
48066
|
id: string;
|
|
47963
48067
|
attributes: JsonApiFilterViewOutAttributes;
|
|
47964
|
-
relationships?:
|
|
48068
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
47965
48069
|
links?: ObjectLinks;
|
|
47966
48070
|
}
|
|
47967
48071
|
|
|
@@ -47984,7 +48088,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
47984
48088
|
*/
|
|
47985
48089
|
id: string;
|
|
47986
48090
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
47987
|
-
relationships?:
|
|
48091
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
47988
48092
|
}
|
|
47989
48093
|
|
|
47990
48094
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -48006,6 +48110,11 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
48006
48110
|
data: JsonApiFilterViewPatch;
|
|
48007
48111
|
}
|
|
48008
48112
|
|
|
48113
|
+
export declare interface JsonApiFilterViewPatchRelationships {
|
|
48114
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
48115
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48116
|
+
}
|
|
48117
|
+
|
|
48009
48118
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
48010
48119
|
readonly FILTER_VIEW: "filterView";
|
|
48011
48120
|
};
|
|
@@ -48194,7 +48303,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
48194
48303
|
export declare interface JsonApiIdentityProviderOutList {
|
|
48195
48304
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48196
48305
|
links?: ListLinks;
|
|
48197
|
-
meta?:
|
|
48306
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48198
48307
|
}
|
|
48199
48308
|
|
|
48200
48309
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -48302,7 +48411,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
48302
48411
|
export declare interface JsonApiJwkOutList {
|
|
48303
48412
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
48304
48413
|
links?: ListLinks;
|
|
48305
|
-
meta?:
|
|
48414
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48306
48415
|
}
|
|
48307
48416
|
|
|
48308
48417
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -48381,7 +48490,7 @@ export declare interface JsonApiLabelOut {
|
|
|
48381
48490
|
* API identifier of an object
|
|
48382
48491
|
*/
|
|
48383
48492
|
id: string;
|
|
48384
|
-
meta?:
|
|
48493
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48385
48494
|
attributes?: JsonApiLabelOutAttributes;
|
|
48386
48495
|
relationships?: JsonApiLabelOutRelationships;
|
|
48387
48496
|
}
|
|
@@ -48436,7 +48545,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
48436
48545
|
export declare interface JsonApiLabelOutList {
|
|
48437
48546
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
48438
48547
|
links?: ListLinks;
|
|
48439
|
-
meta?:
|
|
48548
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48440
48549
|
/**
|
|
48441
48550
|
* Included resources
|
|
48442
48551
|
*/
|
|
@@ -48466,7 +48575,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
48466
48575
|
* API identifier of an object
|
|
48467
48576
|
*/
|
|
48468
48577
|
id: string;
|
|
48469
|
-
meta?:
|
|
48578
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48470
48579
|
attributes?: JsonApiLabelOutAttributes;
|
|
48471
48580
|
relationships?: JsonApiLabelOutRelationships;
|
|
48472
48581
|
links?: ObjectLinks;
|
|
@@ -48593,7 +48702,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
48593
48702
|
export declare interface JsonApiLlmEndpointOutList {
|
|
48594
48703
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
48595
48704
|
links?: ListLinks;
|
|
48596
|
-
meta?:
|
|
48705
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48597
48706
|
}
|
|
48598
48707
|
|
|
48599
48708
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -48692,7 +48801,16 @@ export declare interface JsonApiMetricIn {
|
|
|
48692
48801
|
* API identifier of an object
|
|
48693
48802
|
*/
|
|
48694
48803
|
id: string;
|
|
48695
|
-
attributes:
|
|
48804
|
+
attributes: JsonApiMetricInAttributes;
|
|
48805
|
+
}
|
|
48806
|
+
|
|
48807
|
+
export declare interface JsonApiMetricInAttributes {
|
|
48808
|
+
title?: string;
|
|
48809
|
+
description?: string;
|
|
48810
|
+
tags?: Array<string>;
|
|
48811
|
+
areRelationsValid?: boolean;
|
|
48812
|
+
content: JsonApiMetricOutAttributesContent;
|
|
48813
|
+
isHidden?: boolean;
|
|
48696
48814
|
}
|
|
48697
48815
|
|
|
48698
48816
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -48731,7 +48849,7 @@ export declare interface JsonApiMetricOut {
|
|
|
48731
48849
|
* API identifier of an object
|
|
48732
48850
|
*/
|
|
48733
48851
|
id: string;
|
|
48734
|
-
meta?:
|
|
48852
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48735
48853
|
attributes: JsonApiMetricOutAttributes;
|
|
48736
48854
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
48737
48855
|
}
|
|
@@ -48772,7 +48890,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
48772
48890
|
export declare interface JsonApiMetricOutList {
|
|
48773
48891
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
48774
48892
|
links?: ListLinks;
|
|
48775
|
-
meta?:
|
|
48893
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48776
48894
|
/**
|
|
48777
48895
|
* Included resources
|
|
48778
48896
|
*/
|
|
@@ -48794,7 +48912,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
48794
48912
|
* API identifier of an object
|
|
48795
48913
|
*/
|
|
48796
48914
|
id: string;
|
|
48797
|
-
meta?:
|
|
48915
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48798
48916
|
attributes: JsonApiMetricOutAttributes;
|
|
48799
48917
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
48800
48918
|
links?: ObjectLinks;
|
|
@@ -48852,16 +48970,7 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
48852
48970
|
* API identifier of an object
|
|
48853
48971
|
*/
|
|
48854
48972
|
id?: string;
|
|
48855
|
-
attributes:
|
|
48856
|
-
}
|
|
48857
|
-
|
|
48858
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
48859
|
-
title?: string;
|
|
48860
|
-
description?: string;
|
|
48861
|
-
tags?: Array<string>;
|
|
48862
|
-
areRelationsValid?: boolean;
|
|
48863
|
-
content: JsonApiMetricOutAttributesContent;
|
|
48864
|
-
isHidden?: boolean;
|
|
48973
|
+
attributes: JsonApiMetricInAttributes;
|
|
48865
48974
|
}
|
|
48866
48975
|
|
|
48867
48976
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -48927,7 +49036,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
48927
49036
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
48928
49037
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
48929
49038
|
links?: ListLinks;
|
|
48930
|
-
meta?:
|
|
49039
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48931
49040
|
}
|
|
48932
49041
|
|
|
48933
49042
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -49085,7 +49194,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
49085
49194
|
export declare interface JsonApiNotificationChannelOutList {
|
|
49086
49195
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
49087
49196
|
links?: ListLinks;
|
|
49088
|
-
meta?:
|
|
49197
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49089
49198
|
}
|
|
49090
49199
|
|
|
49091
49200
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -49224,58 +49333,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
49224
49333
|
* API identifier of an object
|
|
49225
49334
|
*/
|
|
49226
49335
|
id: string;
|
|
49227
|
-
attributes?:
|
|
49228
|
-
relationships?:
|
|
49229
|
-
}
|
|
49230
|
-
|
|
49231
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
49232
|
-
name?: string | null;
|
|
49233
|
-
hostname?: string;
|
|
49234
|
-
allowedOrigins?: Array<string>;
|
|
49235
|
-
oauthIssuerLocation?: string;
|
|
49236
|
-
oauthClientId?: string;
|
|
49237
|
-
oauthClientSecret?: string;
|
|
49238
|
-
/**
|
|
49239
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49240
|
-
* @deprecated
|
|
49241
|
-
*/
|
|
49242
|
-
earlyAccess?: string | null;
|
|
49243
|
-
/**
|
|
49244
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
49245
|
-
*/
|
|
49246
|
-
earlyAccessValues?: Array<string> | null;
|
|
49247
|
-
/**
|
|
49248
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
49249
|
-
*/
|
|
49250
|
-
oauthIssuerId?: string;
|
|
49251
|
-
/**
|
|
49252
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
49253
|
-
*/
|
|
49254
|
-
oauthSubjectIdClaim?: string;
|
|
49255
|
-
/**
|
|
49256
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
49257
|
-
*/
|
|
49258
|
-
oauthCustomAuthAttributes?: {
|
|
49259
|
-
[key: string]: string;
|
|
49260
|
-
};
|
|
49261
|
-
/**
|
|
49262
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
49263
|
-
*/
|
|
49264
|
-
oauthCustomScopes?: Array<string> | null;
|
|
49336
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
49337
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
49265
49338
|
}
|
|
49266
49339
|
|
|
49267
49340
|
export declare interface JsonApiOrganizationInDocument {
|
|
49268
49341
|
data: JsonApiOrganizationIn;
|
|
49269
49342
|
}
|
|
49270
49343
|
|
|
49271
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
49272
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
49273
|
-
}
|
|
49274
|
-
|
|
49275
|
-
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
49276
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
49277
|
-
}
|
|
49278
|
-
|
|
49279
49344
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
49280
49345
|
readonly ORGANIZATION: "organization";
|
|
49281
49346
|
};
|
|
@@ -49303,8 +49368,6 @@ export declare interface JsonApiOrganizationOutAttributes {
|
|
|
49303
49368
|
name?: string | null;
|
|
49304
49369
|
hostname?: string;
|
|
49305
49370
|
allowedOrigins?: Array<string>;
|
|
49306
|
-
oauthIssuerLocation?: string;
|
|
49307
|
-
oauthClientId?: string;
|
|
49308
49371
|
/**
|
|
49309
49372
|
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49310
49373
|
* @deprecated
|
|
@@ -49314,25 +49377,7 @@ export declare interface JsonApiOrganizationOutAttributes {
|
|
|
49314
49377
|
* The early access feature identifiers. They are used to enable experimental features.
|
|
49315
49378
|
*/
|
|
49316
49379
|
earlyAccessValues?: Array<string> | null;
|
|
49317
|
-
/**
|
|
49318
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
49319
|
-
*/
|
|
49320
|
-
oauthIssuerId?: string;
|
|
49321
49380
|
cacheSettings?: JsonApiOrganizationOutAttributesCacheSettings;
|
|
49322
|
-
/**
|
|
49323
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
49324
|
-
*/
|
|
49325
|
-
oauthSubjectIdClaim?: string;
|
|
49326
|
-
/**
|
|
49327
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
49328
|
-
*/
|
|
49329
|
-
oauthCustomAuthAttributes?: {
|
|
49330
|
-
[key: string]: string;
|
|
49331
|
-
};
|
|
49332
|
-
/**
|
|
49333
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
49334
|
-
*/
|
|
49335
|
-
oauthCustomScopes?: Array<string> | null;
|
|
49336
49381
|
}
|
|
49337
49382
|
|
|
49338
49383
|
export declare interface JsonApiOrganizationOutAttributesCacheSettings {
|
|
@@ -49376,9 +49421,17 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
49376
49421
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
49377
49422
|
|
|
49378
49423
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
49379
|
-
bootstrapUser?:
|
|
49380
|
-
bootstrapUserGroup?:
|
|
49381
|
-
identityProvider?:
|
|
49424
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
49425
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
49426
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
49427
|
+
}
|
|
49428
|
+
|
|
49429
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
49430
|
+
data: JsonApiUserLinkage | null;
|
|
49431
|
+
}
|
|
49432
|
+
|
|
49433
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
49434
|
+
data: JsonApiUserGroupLinkage | null;
|
|
49382
49435
|
}
|
|
49383
49436
|
|
|
49384
49437
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -49399,14 +49452,37 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
49399
49452
|
* API identifier of an object
|
|
49400
49453
|
*/
|
|
49401
49454
|
id: string;
|
|
49402
|
-
attributes?:
|
|
49403
|
-
relationships?:
|
|
49455
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
49456
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
49457
|
+
}
|
|
49458
|
+
|
|
49459
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
49460
|
+
name?: string | null;
|
|
49461
|
+
hostname?: string;
|
|
49462
|
+
allowedOrigins?: Array<string>;
|
|
49463
|
+
/**
|
|
49464
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49465
|
+
* @deprecated
|
|
49466
|
+
*/
|
|
49467
|
+
earlyAccess?: string | null;
|
|
49468
|
+
/**
|
|
49469
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
49470
|
+
*/
|
|
49471
|
+
earlyAccessValues?: Array<string> | null;
|
|
49404
49472
|
}
|
|
49405
49473
|
|
|
49406
49474
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
49407
49475
|
data: JsonApiOrganizationPatch;
|
|
49408
49476
|
}
|
|
49409
49477
|
|
|
49478
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
49479
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
49480
|
+
}
|
|
49481
|
+
|
|
49482
|
+
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
49483
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
49484
|
+
}
|
|
49485
|
+
|
|
49410
49486
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
49411
49487
|
readonly ORGANIZATION: "organization";
|
|
49412
49488
|
};
|
|
@@ -49425,7 +49501,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
49425
49501
|
* API identifier of an object
|
|
49426
49502
|
*/
|
|
49427
49503
|
id: string;
|
|
49428
|
-
attributes?:
|
|
49504
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
49429
49505
|
}
|
|
49430
49506
|
|
|
49431
49507
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -49450,9 +49526,54 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
49450
49526
|
* API identifier of an object
|
|
49451
49527
|
*/
|
|
49452
49528
|
id: string;
|
|
49453
|
-
attributes?:
|
|
49529
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
49454
49530
|
}
|
|
49455
49531
|
|
|
49532
|
+
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
49533
|
+
/**
|
|
49534
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
49535
|
+
*/
|
|
49536
|
+
content?: object;
|
|
49537
|
+
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
49538
|
+
}
|
|
49539
|
+
|
|
49540
|
+
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
49541
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
49542
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
49543
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
49544
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
49545
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
49546
|
+
readonly LOCALE: "LOCALE";
|
|
49547
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
49548
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
49549
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
49550
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
49551
|
+
readonly WEEK_START: "WEEK_START";
|
|
49552
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
49553
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
49554
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
49555
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
49556
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
49557
|
+
readonly ALERT: "ALERT";
|
|
49558
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
49559
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
49560
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
49561
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
49562
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
49563
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
49564
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
49565
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
49566
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
49567
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
49568
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
49569
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
49570
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
49571
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
49572
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
49573
|
+
};
|
|
49574
|
+
|
|
49575
|
+
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
49576
|
+
|
|
49456
49577
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
49457
49578
|
data: JsonApiOrganizationSettingOut;
|
|
49458
49579
|
links?: ObjectLinks;
|
|
@@ -49464,7 +49585,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
49464
49585
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
49465
49586
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
49466
49587
|
links?: ListLinks;
|
|
49467
|
-
meta?:
|
|
49588
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49468
49589
|
}
|
|
49469
49590
|
|
|
49470
49591
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -49482,7 +49603,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
49482
49603
|
* API identifier of an object
|
|
49483
49604
|
*/
|
|
49484
49605
|
id: string;
|
|
49485
|
-
attributes?:
|
|
49606
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
49486
49607
|
links?: ObjectLinks;
|
|
49487
49608
|
}
|
|
49488
49609
|
|
|
@@ -49504,7 +49625,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
49504
49625
|
* API identifier of an object
|
|
49505
49626
|
*/
|
|
49506
49627
|
id: string;
|
|
49507
|
-
attributes?:
|
|
49628
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
49508
49629
|
}
|
|
49509
49630
|
|
|
49510
49631
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -49568,7 +49689,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
49568
49689
|
export declare interface JsonApiThemeOutList {
|
|
49569
49690
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
49570
49691
|
links?: ListLinks;
|
|
49571
|
-
meta?:
|
|
49692
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49572
49693
|
}
|
|
49573
49694
|
|
|
49574
49695
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -49634,7 +49755,7 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
49634
49755
|
*/
|
|
49635
49756
|
id: string;
|
|
49636
49757
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49637
|
-
relationships?:
|
|
49758
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
49638
49759
|
}
|
|
49639
49760
|
|
|
49640
49761
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
@@ -49659,7 +49780,7 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
49659
49780
|
* API identifier of an object
|
|
49660
49781
|
*/
|
|
49661
49782
|
id: string;
|
|
49662
|
-
meta?:
|
|
49783
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49663
49784
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49664
49785
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
49665
49786
|
}
|
|
@@ -49692,7 +49813,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
49692
49813
|
export declare interface JsonApiUserDataFilterOutList {
|
|
49693
49814
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
49694
49815
|
links?: ListLinks;
|
|
49695
|
-
meta?:
|
|
49816
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49696
49817
|
/**
|
|
49697
49818
|
* Included resources
|
|
49698
49819
|
*/
|
|
@@ -49700,17 +49821,13 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
49700
49821
|
}
|
|
49701
49822
|
|
|
49702
49823
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
49703
|
-
user?:
|
|
49704
|
-
userGroup?:
|
|
49705
|
-
facts?:
|
|
49706
|
-
attributes?:
|
|
49824
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
49825
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
49826
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
49827
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
49707
49828
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
49708
49829
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
49709
|
-
datasets?:
|
|
49710
|
-
}
|
|
49711
|
-
|
|
49712
|
-
export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
49713
|
-
data: JsonApiUserGroupLinkage | null;
|
|
49830
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
49714
49831
|
}
|
|
49715
49832
|
|
|
49716
49833
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -49728,7 +49845,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
49728
49845
|
* API identifier of an object
|
|
49729
49846
|
*/
|
|
49730
49847
|
id: string;
|
|
49731
|
-
meta?:
|
|
49848
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49732
49849
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49733
49850
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
49734
49851
|
links?: ObjectLinks;
|
|
@@ -49753,7 +49870,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
49753
49870
|
*/
|
|
49754
49871
|
id: string;
|
|
49755
49872
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
49756
|
-
relationships?:
|
|
49873
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
49757
49874
|
}
|
|
49758
49875
|
|
|
49759
49876
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -49768,6 +49885,11 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
49768
49885
|
data: JsonApiUserDataFilterPatch;
|
|
49769
49886
|
}
|
|
49770
49887
|
|
|
49888
|
+
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
49889
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
49890
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
49891
|
+
}
|
|
49892
|
+
|
|
49771
49893
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
49772
49894
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
49773
49895
|
};
|
|
@@ -49787,18 +49909,13 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
49787
49909
|
*/
|
|
49788
49910
|
id?: string;
|
|
49789
49911
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49790
|
-
relationships?:
|
|
49912
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
49791
49913
|
}
|
|
49792
49914
|
|
|
49793
49915
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
49794
49916
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
49795
49917
|
}
|
|
49796
49918
|
|
|
49797
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
49798
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
49799
|
-
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
49800
|
-
}
|
|
49801
|
-
|
|
49802
49919
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
49803
49920
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
49804
49921
|
};
|
|
@@ -49880,7 +49997,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
49880
49997
|
export declare interface JsonApiUserGroupOutList {
|
|
49881
49998
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
49882
49999
|
links?: ListLinks;
|
|
49883
|
-
meta?:
|
|
50000
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49884
50001
|
/**
|
|
49885
50002
|
* Included resources
|
|
49886
50003
|
*/
|
|
@@ -49888,7 +50005,14 @@ export declare interface JsonApiUserGroupOutList {
|
|
|
49888
50005
|
}
|
|
49889
50006
|
|
|
49890
50007
|
export declare interface JsonApiUserGroupOutRelationships {
|
|
49891
|
-
parents?:
|
|
50008
|
+
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
50009
|
+
}
|
|
50010
|
+
|
|
50011
|
+
export declare interface JsonApiUserGroupOutRelationshipsParents {
|
|
50012
|
+
/**
|
|
50013
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50014
|
+
*/
|
|
50015
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
49892
50016
|
}
|
|
49893
50017
|
|
|
49894
50018
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
@@ -49989,7 +50113,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
49989
50113
|
export declare interface JsonApiUserIdentifierOutList {
|
|
49990
50114
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
49991
50115
|
links?: ListLinks;
|
|
49992
|
-
meta?:
|
|
50116
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49993
50117
|
}
|
|
49994
50118
|
|
|
49995
50119
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -50095,7 +50219,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
50095
50219
|
export declare interface JsonApiUserOutList {
|
|
50096
50220
|
data: Array<JsonApiUserOutWithLinks>;
|
|
50097
50221
|
links?: ListLinks;
|
|
50098
|
-
meta?:
|
|
50222
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50099
50223
|
/**
|
|
50100
50224
|
* Included resources
|
|
50101
50225
|
*/
|
|
@@ -50103,14 +50227,7 @@ export declare interface JsonApiUserOutList {
|
|
|
50103
50227
|
}
|
|
50104
50228
|
|
|
50105
50229
|
export declare interface JsonApiUserOutRelationships {
|
|
50106
|
-
userGroups?:
|
|
50107
|
-
}
|
|
50108
|
-
|
|
50109
|
-
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
50110
|
-
/**
|
|
50111
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50112
|
-
*/
|
|
50113
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
50230
|
+
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
50114
50231
|
}
|
|
50115
50232
|
|
|
50116
50233
|
export declare const JsonApiUserOutTypeEnum: {
|
|
@@ -50177,7 +50294,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
50177
50294
|
* API identifier of an object
|
|
50178
50295
|
*/
|
|
50179
50296
|
id: string;
|
|
50180
|
-
attributes?:
|
|
50297
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
50181
50298
|
}
|
|
50182
50299
|
|
|
50183
50300
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -50202,7 +50319,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
50202
50319
|
* API identifier of an object
|
|
50203
50320
|
*/
|
|
50204
50321
|
id: string;
|
|
50205
|
-
attributes?:
|
|
50322
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
50206
50323
|
}
|
|
50207
50324
|
|
|
50208
50325
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -50216,7 +50333,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
50216
50333
|
export declare interface JsonApiUserSettingOutList {
|
|
50217
50334
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
50218
50335
|
links?: ListLinks;
|
|
50219
|
-
meta?:
|
|
50336
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50220
50337
|
}
|
|
50221
50338
|
|
|
50222
50339
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -50234,7 +50351,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
50234
50351
|
* API identifier of an object
|
|
50235
50352
|
*/
|
|
50236
50353
|
id: string;
|
|
50237
|
-
attributes?:
|
|
50354
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
50238
50355
|
links?: ObjectLinks;
|
|
50239
50356
|
}
|
|
50240
50357
|
|
|
@@ -50256,7 +50373,19 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
50256
50373
|
* API identifier of an object
|
|
50257
50374
|
*/
|
|
50258
50375
|
id: string;
|
|
50259
|
-
attributes:
|
|
50376
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
50377
|
+
}
|
|
50378
|
+
|
|
50379
|
+
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
50380
|
+
title?: string;
|
|
50381
|
+
description?: string;
|
|
50382
|
+
tags?: Array<string>;
|
|
50383
|
+
areRelationsValid?: boolean;
|
|
50384
|
+
/**
|
|
50385
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50386
|
+
*/
|
|
50387
|
+
content: object;
|
|
50388
|
+
isHidden?: boolean;
|
|
50260
50389
|
}
|
|
50261
50390
|
|
|
50262
50391
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -50295,7 +50424,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
50295
50424
|
* API identifier of an object
|
|
50296
50425
|
*/
|
|
50297
50426
|
id: string;
|
|
50298
|
-
meta?:
|
|
50427
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50299
50428
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
50300
50429
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
50301
50430
|
}
|
|
@@ -50329,27 +50458,70 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
50329
50458
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
50330
50459
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
50331
50460
|
links?: ListLinks;
|
|
50332
|
-
meta?:
|
|
50461
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50333
50462
|
/**
|
|
50334
50463
|
* Included resources
|
|
50335
50464
|
*/
|
|
50336
50465
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
50337
50466
|
}
|
|
50338
50467
|
|
|
50468
|
+
export declare interface JsonApiVisualizationObjectOutMeta {
|
|
50469
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
50470
|
+
}
|
|
50471
|
+
|
|
50472
|
+
export declare interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
50473
|
+
/**
|
|
50474
|
+
* defines type of the origin of the entity
|
|
50475
|
+
*/
|
|
50476
|
+
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
50477
|
+
/**
|
|
50478
|
+
* defines id of the workspace where the entity comes from
|
|
50479
|
+
*/
|
|
50480
|
+
originId: string;
|
|
50481
|
+
}
|
|
50482
|
+
|
|
50483
|
+
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
50484
|
+
readonly NATIVE: "NATIVE";
|
|
50485
|
+
readonly PARENT: "PARENT";
|
|
50486
|
+
};
|
|
50487
|
+
|
|
50488
|
+
export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
50489
|
+
|
|
50339
50490
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
50340
50491
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
50341
50492
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
50342
|
-
facts?:
|
|
50343
|
-
attributes?:
|
|
50493
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
50494
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
50344
50495
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
50345
50496
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
50346
|
-
datasets?:
|
|
50497
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
50498
|
+
}
|
|
50499
|
+
|
|
50500
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
50501
|
+
/**
|
|
50502
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50503
|
+
*/
|
|
50504
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
50347
50505
|
}
|
|
50348
50506
|
|
|
50349
50507
|
export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
50350
50508
|
data: JsonApiUserIdentifierLinkage | null;
|
|
50351
50509
|
}
|
|
50352
50510
|
|
|
50511
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
50512
|
+
/**
|
|
50513
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50514
|
+
*/
|
|
50515
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
50516
|
+
}
|
|
50517
|
+
|
|
50518
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
50519
|
+
/**
|
|
50520
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50521
|
+
*/
|
|
50522
|
+
data: Array<JsonApiFactLinkage>;
|
|
50523
|
+
}
|
|
50524
|
+
|
|
50353
50525
|
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
50354
50526
|
/**
|
|
50355
50527
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -50379,7 +50551,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
50379
50551
|
* API identifier of an object
|
|
50380
50552
|
*/
|
|
50381
50553
|
id: string;
|
|
50382
|
-
meta?:
|
|
50554
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50383
50555
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
50384
50556
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
50385
50557
|
links?: ObjectLinks;
|
|
@@ -50440,19 +50612,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
50440
50612
|
* API identifier of an object
|
|
50441
50613
|
*/
|
|
50442
50614
|
id?: string;
|
|
50443
|
-
attributes:
|
|
50444
|
-
}
|
|
50445
|
-
|
|
50446
|
-
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
50447
|
-
title?: string;
|
|
50448
|
-
description?: string;
|
|
50449
|
-
tags?: Array<string>;
|
|
50450
|
-
areRelationsValid?: boolean;
|
|
50451
|
-
/**
|
|
50452
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50453
|
-
*/
|
|
50454
|
-
content: object;
|
|
50455
|
-
isHidden?: boolean;
|
|
50615
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
50456
50616
|
}
|
|
50457
50617
|
|
|
50458
50618
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -50492,7 +50652,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
50492
50652
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
50493
50653
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
50494
50654
|
links?: ListLinks;
|
|
50495
|
-
meta?:
|
|
50655
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50496
50656
|
/**
|
|
50497
50657
|
* Included resources
|
|
50498
50658
|
*/
|
|
@@ -50501,12 +50661,12 @@ export declare interface JsonApiWorkspaceAutomationOutList {
|
|
|
50501
50661
|
|
|
50502
50662
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
50503
50663
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
50504
|
-
notificationChannel?:
|
|
50505
|
-
analyticalDashboard?:
|
|
50664
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
50665
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
50506
50666
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
50507
50667
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
50508
|
-
exportDefinitions?:
|
|
50509
|
-
recipients?:
|
|
50668
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
50669
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
50510
50670
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
50511
50671
|
}
|
|
50512
50672
|
|
|
@@ -50588,7 +50748,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
50588
50748
|
* API identifier of an object
|
|
50589
50749
|
*/
|
|
50590
50750
|
id: string;
|
|
50591
|
-
meta?:
|
|
50751
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50592
50752
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
50593
50753
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
50594
50754
|
}
|
|
@@ -50614,7 +50774,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
50614
50774
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
50615
50775
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
50616
50776
|
links?: ListLinks;
|
|
50617
|
-
meta?:
|
|
50777
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50618
50778
|
/**
|
|
50619
50779
|
* Included resources
|
|
50620
50780
|
*/
|
|
@@ -50647,7 +50807,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
50647
50807
|
* API identifier of an object
|
|
50648
50808
|
*/
|
|
50649
50809
|
id: string;
|
|
50650
|
-
meta?:
|
|
50810
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50651
50811
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
50652
50812
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
50653
50813
|
links?: ObjectLinks;
|
|
@@ -50697,8 +50857,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
50697
50857
|
* API identifier of an object
|
|
50698
50858
|
*/
|
|
50699
50859
|
id: string;
|
|
50700
|
-
attributes?:
|
|
50701
|
-
relationships?:
|
|
50860
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
50861
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
50702
50862
|
}
|
|
50703
50863
|
|
|
50704
50864
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
@@ -50737,15 +50897,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
50737
50897
|
* API identifier of an object
|
|
50738
50898
|
*/
|
|
50739
50899
|
id: string;
|
|
50740
|
-
meta?:
|
|
50741
|
-
attributes?:
|
|
50742
|
-
relationships?:
|
|
50743
|
-
}
|
|
50744
|
-
|
|
50745
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
50746
|
-
title?: string;
|
|
50747
|
-
description?: string;
|
|
50748
|
-
filterValues?: Array<string>;
|
|
50900
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50901
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
50902
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
50749
50903
|
}
|
|
50750
50904
|
|
|
50751
50905
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -50763,21 +50917,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
50763
50917
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
50764
50918
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
50765
50919
|
links?: ListLinks;
|
|
50766
|
-
meta?:
|
|
50920
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50767
50921
|
/**
|
|
50768
50922
|
* Included resources
|
|
50769
50923
|
*/
|
|
50770
50924
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
50771
50925
|
}
|
|
50772
50926
|
|
|
50773
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
50774
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
50775
|
-
}
|
|
50776
|
-
|
|
50777
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
50778
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
50779
|
-
}
|
|
50780
|
-
|
|
50781
50927
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
50782
50928
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
50783
50929
|
};
|
|
@@ -50793,9 +50939,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
50793
50939
|
* API identifier of an object
|
|
50794
50940
|
*/
|
|
50795
50941
|
id: string;
|
|
50796
|
-
meta?:
|
|
50797
|
-
attributes?:
|
|
50798
|
-
relationships?:
|
|
50942
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50943
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
50944
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
50799
50945
|
links?: ObjectLinks;
|
|
50800
50946
|
}
|
|
50801
50947
|
|
|
@@ -50817,14 +50963,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
50817
50963
|
* API identifier of an object
|
|
50818
50964
|
*/
|
|
50819
50965
|
id: string;
|
|
50820
|
-
attributes?:
|
|
50821
|
-
relationships?:
|
|
50966
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
50967
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
50968
|
+
}
|
|
50969
|
+
|
|
50970
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
50971
|
+
title?: string;
|
|
50972
|
+
description?: string;
|
|
50973
|
+
filterValues?: Array<string>;
|
|
50822
50974
|
}
|
|
50823
50975
|
|
|
50824
50976
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
50825
50977
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
50826
50978
|
}
|
|
50827
50979
|
|
|
50980
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
50981
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
50982
|
+
}
|
|
50983
|
+
|
|
50984
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
50985
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
50986
|
+
}
|
|
50987
|
+
|
|
50828
50988
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
50829
50989
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
50830
50990
|
};
|
|
@@ -50937,7 +51097,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
50937
51097
|
export declare interface JsonApiWorkspaceOutList {
|
|
50938
51098
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
50939
51099
|
links?: ListLinks;
|
|
50940
|
-
meta?:
|
|
51100
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50941
51101
|
/**
|
|
50942
51102
|
* Included resources
|
|
50943
51103
|
*/
|
|
@@ -51070,7 +51230,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
51070
51230
|
* API identifier of an object
|
|
51071
51231
|
*/
|
|
51072
51232
|
id: string;
|
|
51073
|
-
attributes?:
|
|
51233
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
51074
51234
|
}
|
|
51075
51235
|
|
|
51076
51236
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -51095,55 +51255,10 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
51095
51255
|
* API identifier of an object
|
|
51096
51256
|
*/
|
|
51097
51257
|
id: string;
|
|
51098
|
-
meta?:
|
|
51099
|
-
attributes?:
|
|
51258
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51259
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
51100
51260
|
}
|
|
51101
51261
|
|
|
51102
|
-
export declare interface JsonApiWorkspaceSettingOutAttributes {
|
|
51103
|
-
/**
|
|
51104
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
51105
|
-
*/
|
|
51106
|
-
content?: object;
|
|
51107
|
-
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
51108
|
-
}
|
|
51109
|
-
|
|
51110
|
-
export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
|
|
51111
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
51112
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
51113
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
51114
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
51115
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
51116
|
-
readonly LOCALE: "LOCALE";
|
|
51117
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
51118
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
51119
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
51120
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
51121
|
-
readonly WEEK_START: "WEEK_START";
|
|
51122
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
51123
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
51124
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
51125
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
51126
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
51127
|
-
readonly ALERT: "ALERT";
|
|
51128
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
51129
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
51130
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
51131
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
51132
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
51133
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
51134
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
51135
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
51136
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
51137
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
51138
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
51139
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
51140
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
51141
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
51142
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
51143
|
-
};
|
|
51144
|
-
|
|
51145
|
-
export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
|
|
51146
|
-
|
|
51147
51262
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
51148
51263
|
data: JsonApiWorkspaceSettingOut;
|
|
51149
51264
|
links?: ObjectLinks;
|
|
@@ -51155,7 +51270,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
51155
51270
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
51156
51271
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
51157
51272
|
links?: ListLinks;
|
|
51158
|
-
meta?:
|
|
51273
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51159
51274
|
}
|
|
51160
51275
|
|
|
51161
51276
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -51173,8 +51288,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
51173
51288
|
* API identifier of an object
|
|
51174
51289
|
*/
|
|
51175
51290
|
id: string;
|
|
51176
|
-
meta?:
|
|
51177
|
-
attributes?:
|
|
51291
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51292
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
51178
51293
|
links?: ObjectLinks;
|
|
51179
51294
|
}
|
|
51180
51295
|
|
|
@@ -51196,7 +51311,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
51196
51311
|
* API identifier of an object
|
|
51197
51312
|
*/
|
|
51198
51313
|
id: string;
|
|
51199
|
-
attributes?:
|
|
51314
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
51200
51315
|
}
|
|
51201
51316
|
|
|
51202
51317
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -51221,7 +51336,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
51221
51336
|
* API identifier of an object
|
|
51222
51337
|
*/
|
|
51223
51338
|
id?: string;
|
|
51224
|
-
attributes?:
|
|
51339
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
51225
51340
|
}
|
|
51226
51341
|
|
|
51227
51342
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -67285,6 +67400,13 @@ export declare interface ProfileApiInterface {
|
|
|
67285
67400
|
getCurrentWithDetails: () => Promise<IUserProfile>;
|
|
67286
67401
|
}
|
|
67287
67402
|
|
|
67403
|
+
declare const QualityIssueSeverityEnum: {
|
|
67404
|
+
readonly ERROR: "error";
|
|
67405
|
+
readonly WARNING: "warning";
|
|
67406
|
+
};
|
|
67407
|
+
|
|
67408
|
+
declare type QualityIssueSeverityEnum = (typeof QualityIssueSeverityEnum)[keyof typeof QualityIssueSeverityEnum];
|
|
67409
|
+
|
|
67288
67410
|
declare interface Range_2 {
|
|
67289
67411
|
operator: RangeOperatorEnum;
|
|
67290
67412
|
measure: LocalIdentifier;
|
|
@@ -69769,7 +69891,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
|
|
|
69769
69891
|
/**
|
|
69770
69892
|
* Tiger GenAI client factory
|
|
69771
69893
|
*/
|
|
69772
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "tags" | "createdBy">;
|
|
69894
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
|
|
69773
69895
|
|
|
69774
69896
|
export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
|
|
69775
69897
|
|
|
@@ -70139,6 +70261,14 @@ export declare interface TranslationsApiSetTranslationsRequest {
|
|
|
70139
70261
|
readonly xliff: Xliff;
|
|
70140
70262
|
}
|
|
70141
70263
|
|
|
70264
|
+
declare const TriggerQualityIssuesCalculationResponseStatusEnum: {
|
|
70265
|
+
readonly RUNNING: "RUNNING";
|
|
70266
|
+
readonly COMPLETED: "COMPLETED";
|
|
70267
|
+
readonly FAILED: "FAILED";
|
|
70268
|
+
};
|
|
70269
|
+
|
|
70270
|
+
declare type TriggerQualityIssuesCalculationResponseStatusEnum = (typeof TriggerQualityIssuesCalculationResponseStatusEnum)[keyof typeof TriggerQualityIssuesCalculationResponseStatusEnum];
|
|
70271
|
+
|
|
70142
70272
|
/**
|
|
70143
70273
|
* Information related to the file uploaded to the staging area.
|
|
70144
70274
|
*/
|