@gooddata/api-client-tiger 11.5.0-alpha.4 → 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.
@@ -2253,20 +2253,6 @@ declare interface ActionsApiGetMemoryItemRequest {
2253
2253
  readonly memoryId: string;
2254
2254
  }
2255
2255
 
2256
- /**
2257
- * Request parameters for getQualityIssues operation in ActionsApi.
2258
- * @export
2259
- * @interface ActionsApiGetQualityIssuesRequest
2260
- */
2261
- declare interface ActionsApiGetQualityIssuesRequest {
2262
- /**
2263
- * Workspace identifier
2264
- * @type {string}
2265
- * @memberof ActionsApiGetQualityIssues
2266
- */
2267
- readonly workspaceId: string;
2268
- }
2269
-
2270
2256
  /**
2271
2257
  * Request parameters for getTranslationTags operation in ActionsApi.
2272
2258
  * @export
@@ -5273,7 +5259,16 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5273
5259
  * @throws {RequiredError}
5274
5260
  * @memberof ActionsApi
5275
5261
  */
5276
- getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<GetQualityIssuesResponse, any, {}>>;
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, {}>>;
5277
5272
  /**
5278
5273
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5279
5274
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5346,6 +5341,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5346
5341
  * @memberof ActionsApi
5347
5342
  */
5348
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, {}>>;
5349
5353
  /**
5350
5354
  * (EXPERIMENTAL) Updates memory item and returns it
5351
5355
  * @summary (EXPERIMENTAL) Update memory item
@@ -5602,6 +5606,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5602
5606
  * @throws {RequiredError}
5603
5607
  */
5604
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>;
5605
5618
  /**
5606
5619
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5607
5620
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5678,6 +5691,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5678
5691
  * @throws {RequiredError}
5679
5692
  */
5680
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>;
5681
5702
  /**
5682
5703
  * (EXPERIMENTAL) Updates memory item and returns it
5683
5704
  * @summary (EXPERIMENTAL) Update memory item
@@ -5895,7 +5916,15 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5895
5916
  * @param {*} [options] Override http request option.
5896
5917
  * @throws {RequiredError}
5897
5918
  */
5898
- getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
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>;
5899
5928
  /**
5900
5929
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5901
5930
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5960,6 +5989,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5960
5989
  * @throws {RequiredError}
5961
5990
  */
5962
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>;
5963
6000
  /**
5964
6001
  * (EXPERIMENTAL) Updates memory item and returns it
5965
6002
  * @summary (EXPERIMENTAL) Update memory item
@@ -6212,7 +6249,16 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
6212
6249
  * @param {*} [options] Override http request option.
6213
6250
  * @throws {RequiredError}
6214
6251
  */
6215
- getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetQualityIssuesResponse>>;
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>>;
6216
6262
  /**
6217
6263
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
6218
6264
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -6289,6 +6335,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
6289
6335
  * @throws {RequiredError}
6290
6336
  */
6291
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>>;
6292
6346
  /**
6293
6347
  * (EXPERIMENTAL) Updates memory item and returns it
6294
6348
  * @summary (EXPERIMENTAL) Update memory item
@@ -6318,6 +6372,40 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
6318
6372
  validateLLMEndpointById(llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
6319
6373
  };
6320
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
+
6395
+ /**
6396
+ * Request parameters for getQualityIssues operation in ActionsApi.
6397
+ * @export
6398
+ * @interface ActionsApiGetQualityIssuesRequest
6399
+ */
6400
+ export declare interface AfmActionsApiGetQualityIssuesRequest {
6401
+ /**
6402
+ * Workspace identifier
6403
+ * @type {string}
6404
+ * @memberof ActionsApiGetQualityIssues
6405
+ */
6406
+ readonly workspaceId: string;
6407
+ }
6408
+
6321
6409
  /**
6322
6410
  * ActionsApi - interface
6323
6411
  * @export
@@ -6530,7 +6618,16 @@ export declare interface AfmActionsApiInterface {
6530
6618
  * @throws {RequiredError}
6531
6619
  * @memberof ActionsApiInterface
6532
6620
  */
6533
- getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
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
@@ -6851,6 +6971,13 @@ export declare type AfmFilterDefinition = AfmAbsoluteDateFilter | AfmComparisonM
6851
6971
  */
6852
6972
  export declare type AfmFilterDefinitionForSimpleMeasure = AfmAttributeFilter | AfmDateFilter;
6853
6973
 
6974
+ export declare interface AfmGetQualityIssuesResponse {
6975
+ /**
6976
+ * List of quality issues found in the workspace
6977
+ */
6978
+ issues: Array<AfmQualityIssue>;
6979
+ }
6980
+
6854
6981
  /**
6855
6982
  * @type AfmIdentifier
6856
6983
  * Reference to the attribute label to which the filter should be applied.
@@ -6908,6 +7035,48 @@ export declare interface AfmMeasureItem {
6908
7035
  definition: AfmMeasureDefinition;
6909
7036
  }
6910
7037
 
7038
+ /**
7039
+ * Individual change analysis data item
7040
+ */
7041
+ export declare interface AfmMetricValueChange {
7042
+ /**
7043
+ * The name of the attribute being analyzed
7044
+ */
7045
+ attributeName: string;
7046
+ /**
7047
+ * The value of the attribute being analyzed
7048
+ */
7049
+ attributeValue: string;
7050
+ /**
7051
+ * The metric value in the analyzed period
7052
+ */
7053
+ metricValueInAnalyzedPeriod: number;
7054
+ /**
7055
+ * The metric value in the reference period
7056
+ */
7057
+ metricValueInReferencePeriod: number;
7058
+ /**
7059
+ * The delta between analyzed and reference periods
7060
+ */
7061
+ metricValueDelta: number;
7062
+ /**
7063
+ * The absolute delta between analyzed and reference periods
7064
+ */
7065
+ metricValueDeltaAbs: number;
7066
+ /**
7067
+ * The mean of attribute value changes for the attribute being analyzed
7068
+ */
7069
+ attributeValuesChangeMean: number;
7070
+ /**
7071
+ * The standard deviation of attribute value changes for the attribute being analyzed
7072
+ */
7073
+ attributeValuesChangeStd: number;
7074
+ /**
7075
+ * Whether the change is statistically significant
7076
+ */
7077
+ isSignificantChange: boolean;
7078
+ }
7079
+
6911
7080
  /**
6912
7081
  * Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
6913
7082
  */
@@ -7223,6 +7392,68 @@ export declare interface AfmPositiveAttributeFilterPositiveAttributeFilter {
7223
7392
  label: AfmModelIdentifier;
7224
7393
  }
7225
7394
 
7395
+ /**
7396
+ * List of quality issues (available when status is COMPLETED)
7397
+ */
7398
+ export declare interface AfmQualityIssue {
7399
+ /**
7400
+ * List of objects affected by this quality issue
7401
+ */
7402
+ objects: Array<AfmQualityIssueObject>;
7403
+ /**
7404
+ * Severity level
7405
+ */
7406
+ severity: QualityIssueSeverityEnum;
7407
+ /**
7408
+ * Quality issue code
7409
+ */
7410
+ code: string;
7411
+ /**
7412
+ * Detailed information about the quality issue
7413
+ */
7414
+ detail: {
7415
+ [key: string]: object;
7416
+ };
7417
+ }
7418
+
7419
+ /**
7420
+ * List of objects affected by this quality issue
7421
+ */
7422
+ export declare interface AfmQualityIssueObject {
7423
+ /**
7424
+ * Object type
7425
+ */
7426
+ type: string;
7427
+ /**
7428
+ * Object ID
7429
+ */
7430
+ id: string;
7431
+ }
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
+
7226
7457
  /**
7227
7458
  * Filter the result by comparing specified metric to given range of values.
7228
7459
  */
@@ -7372,6 +7603,17 @@ export declare const AfmSimpleMeasureDefinitionMeasureAggregationEnum: {
7372
7603
 
7373
7604
  export declare type AfmSimpleMeasureDefinitionMeasureAggregationEnum = (typeof AfmSimpleMeasureDefinitionMeasureAggregationEnum)[keyof typeof AfmSimpleMeasureDefinitionMeasureAggregationEnum];
7374
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
+
7375
7617
  /**
7376
7618
  * Entity describing the valid descendants request.
7377
7619
  */
@@ -7885,7 +8127,6 @@ export declare const ApiEntitlementNameEnum: {
7885
8127
  readonly EXTRA_CACHE: "ExtraCache";
7886
8128
  readonly HIPAA: "Hipaa";
7887
8129
  readonly PDF_EXPORTS: "PdfExports";
7888
- readonly MANAGED_OIDC: "ManagedOIDC";
7889
8130
  readonly UI_LOCALIZATION: "UiLocalization";
7890
8131
  readonly TIER: "Tier";
7891
8132
  readonly USER_COUNT: "UserCount";
@@ -9214,6 +9455,20 @@ export declare interface AttributeElementsByValue {
9214
9455
  values: Array<string | null>;
9215
9456
  }
9216
9457
 
9458
+ /**
9459
+ * Attribute equality filter
9460
+ */
9461
+ declare interface AttributeEqualityFilter {
9462
+ /**
9463
+ * The attribute label identifier to filter on
9464
+ */
9465
+ labelIdentifier: string;
9466
+ /**
9467
+ * List of values to match (IN operation)
9468
+ */
9469
+ values: Array<string | null>;
9470
+ }
9471
+
9217
9472
  export declare interface AttributeExecutionResultHeader {
9218
9473
  attributeHeader: AttributeResultHeader;
9219
9474
  }
@@ -10642,6 +10897,7 @@ export declare interface AutomationAutomationImageExport {
10642
10897
  * Additional information for the automation.
10643
10898
  */
10644
10899
  export declare interface AutomationAutomationMetadata {
10900
+ [key: string]: any;
10645
10901
  widget?: string;
10646
10902
  visibleFilters?: Array<AutomationVisibleFilter>;
10647
10903
  }
@@ -11355,6 +11611,7 @@ export declare type AutomationMeasureValueFilter = AutomationComparisonMeasureVa
11355
11611
  * Additional information for the automation.
11356
11612
  */
11357
11613
  export declare interface AutomationMetadata {
11614
+ [key: string]: any;
11358
11615
  widget?: string;
11359
11616
  visibleFilters?: Array<VisibleFilter>;
11360
11617
  }
@@ -14104,8 +14361,14 @@ export declare interface CacheUsageData {
14104
14361
  * Request for change analysis computation
14105
14362
  */
14106
14363
  declare interface ChangeAnalysisRequest {
14107
- metricIdentifier: ObjectIdentifier;
14108
- dateAttributeIdentifier: ObjectIdentifier;
14364
+ /**
14365
+ * The metric identifier to analyze for changes
14366
+ */
14367
+ metricIdentifier: string;
14368
+ /**
14369
+ * The date attribute identifier to use for time period comparison
14370
+ */
14371
+ dateAttributeIdentifier: string;
14109
14372
  /**
14110
14373
  * The reference time period (e.g., \'2025-01\')
14111
14374
  */
@@ -14115,13 +14378,17 @@ declare interface ChangeAnalysisRequest {
14115
14378
  */
14116
14379
  analyzedPeriod: string;
14117
14380
  /**
14118
- * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
14381
+ * Label identifiers of attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
14119
14382
  */
14120
- attributeIdentifiers: Array<ObjectIdentifier>;
14383
+ attributeLabelIdentifiers: Array<string>;
14121
14384
  /**
14122
- * The significance threshold for changes (default: 2.0 standard deviations)
14385
+ * Optional filters to apply.
14123
14386
  */
14124
- significanceThreshold?: number;
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;
14125
14392
  }
14126
14393
 
14127
14394
  /**
@@ -14138,9 +14405,7 @@ declare interface ChangeAnalysisResult {
14138
14405
  /**
14139
14406
  * The change analysis result data containing significant changes.
14140
14407
  */
14141
- data: {
14142
- [key: string]: object;
14143
- };
14408
+ data: Array<AfmMetricValueChange>;
14144
14409
  }
14145
14410
 
14146
14411
  /**
@@ -21195,18 +21460,6 @@ export declare interface DeclarativeOrganizationInfo {
21195
21460
  */
21196
21461
  hostname: string;
21197
21462
  allowedOrigins?: Array<string>;
21198
- /**
21199
- * URI of the authentication provider.
21200
- */
21201
- oauthIssuerLocation?: string;
21202
- /**
21203
- * Identifier of the authentication provider
21204
- */
21205
- oauthClientId?: string;
21206
- /**
21207
- * Communication secret of the authentication provider (never returned back).
21208
- */
21209
- oauthClientSecret?: string;
21210
21463
  permissions: Array<DeclarativeOrganizationPermission>;
21211
21464
  /**
21212
21465
  * Early access defined on level Organization
@@ -21217,24 +21470,6 @@ export declare interface DeclarativeOrganizationInfo {
21217
21470
  * Early access defined on level Organization
21218
21471
  */
21219
21472
  earlyAccessValues?: Array<string>;
21220
- /**
21221
- * 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.
21222
- */
21223
- oauthIssuerId?: string;
21224
- /**
21225
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
21226
- */
21227
- oauthSubjectIdClaim?: string;
21228
- /**
21229
- * 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.
21230
- */
21231
- oauthCustomAuthAttributes?: {
21232
- [key: string]: string;
21233
- };
21234
- /**
21235
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
21236
- */
21237
- oauthCustomScopes?: Array<string> | null;
21238
21473
  /**
21239
21474
  * A list of organization settings.
21240
21475
  */
@@ -38838,7 +39073,6 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
38838
39073
  readonly EXTRA_CACHE: "ExtraCache";
38839
39074
  readonly HIPAA: "Hipaa";
38840
39075
  readonly PDF_EXPORTS: "PdfExports";
38841
- readonly MANAGED_OIDC: "ManagedOIDC";
38842
39076
  readonly UI_LOCALIZATION: "UiLocalization";
38843
39077
  readonly TIER: "Tier";
38844
39078
  readonly USER_COUNT: "UserCount";
@@ -42483,6 +42717,10 @@ export declare interface GenerateLdmRequest {
42483
42717
  * Columns starting with this prefix will be considered as references. The prefix is then followed by the value of `separator` parameter. Given the reference prefix is `r` and separator is `__`, the columns with name like `r__customer__customer_id` will be considered as references to customer_id in customer table.
42484
42718
  */
42485
42719
  referencePrefix?: string;
42720
+ /**
42721
+ * Columns starting with this prefix will be considered as references to date dataset. The prefix is then followed by the value of `separator` parameter. Given the reference prefix is `d` and separator is `__`, the columns with name like `d__date` will be considered as reference to date dataset. There can be also second separator and granularity suffix, e.g. `d__date__day` to create attribute reference to exact date dataset and granularity.
42722
+ */
42723
+ dateReferencePrefix?: string;
42486
42724
  /**
42487
42725
  * Columns starting with this prefix will be considered as grain references. The prefix is then followed by the value of `separator` parameter. For composite references, the reference is multivalue if at least one column is multivalue. Given the reference prefix is `grr` and separator is `__`, the columns with name like `grr__customer__customer_id` will be considered as grain references to customer_id in customer table.
42488
42726
  */
@@ -42612,10 +42850,6 @@ export declare interface GenerateLogicalDataModelApiInterface {
42612
42850
  generateLogicalModel(requestParameters: GenerateLogicalDataModelApiGenerateLogicalModelRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeModel>;
42613
42851
  }
42614
42852
 
42615
- declare interface GetQualityIssuesResponse {
42616
- issues: Array<QualityIssue>;
42617
- }
42618
-
42619
42853
  /**
42620
42854
  * A grain identifier.
42621
42855
  */
@@ -44454,7 +44688,7 @@ export declare interface JsonApiAggregatedFactOut {
44454
44688
  * API identifier of an object
44455
44689
  */
44456
44690
  id: string;
44457
- meta?: JsonApiDatasetOutMeta;
44691
+ meta?: JsonApiVisualizationObjectOutMeta;
44458
44692
  attributes: JsonApiAggregatedFactOutAttributes;
44459
44693
  relationships?: JsonApiAggregatedFactOutRelationships;
44460
44694
  }
@@ -44508,19 +44742,15 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
44508
44742
  export declare interface JsonApiAggregatedFactOutList {
44509
44743
  data: Array<JsonApiAggregatedFactOutWithLinks>;
44510
44744
  links?: ListLinks;
44511
- meta?: JsonApiAggregatedFactOutListMeta;
44745
+ meta?: JsonApiColorPaletteOutListMeta;
44512
44746
  /**
44513
44747
  * Included resources
44514
44748
  */
44515
44749
  included?: Array<JsonApiAggregatedFactOutIncludes>;
44516
44750
  }
44517
44751
 
44518
- export declare interface JsonApiAggregatedFactOutListMeta {
44519
- page?: PageMetadata;
44520
- }
44521
-
44522
44752
  export declare interface JsonApiAggregatedFactOutRelationships {
44523
- dataset?: JsonApiFactOutRelationshipsDataset;
44753
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
44524
44754
  sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
44525
44755
  }
44526
44756
 
@@ -44543,7 +44773,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
44543
44773
  * API identifier of an object
44544
44774
  */
44545
44775
  id: string;
44546
- meta?: JsonApiDatasetOutMeta;
44776
+ meta?: JsonApiVisualizationObjectOutMeta;
44547
44777
  attributes: JsonApiAggregatedFactOutAttributes;
44548
44778
  relationships?: JsonApiAggregatedFactOutRelationships;
44549
44779
  links?: ObjectLinks;
@@ -44644,7 +44874,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
44644
44874
  export declare interface JsonApiAnalyticalDashboardOutList {
44645
44875
  data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
44646
44876
  links?: ListLinks;
44647
- meta?: JsonApiAggregatedFactOutListMeta;
44877
+ meta?: JsonApiColorPaletteOutListMeta;
44648
44878
  /**
44649
44879
  * Included resources
44650
44880
  */
@@ -44656,7 +44886,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
44656
44886
  * List of valid permissions for a logged-in user.
44657
44887
  */
44658
44888
  permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
44659
- origin?: JsonApiDatasetOutMetaOrigin;
44889
+ origin?: JsonApiVisualizationObjectOutMetaOrigin;
44660
44890
  accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
44661
44891
  }
44662
44892
 
@@ -44682,7 +44912,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
44682
44912
  analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
44683
44913
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
44684
44914
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
44685
- datasets?: JsonApiDatasetOutRelationshipsReferences;
44915
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
44686
44916
  filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
44687
44917
  dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
44688
44918
  }
@@ -44860,7 +45090,7 @@ export declare interface JsonApiApiTokenOutDocument {
44860
45090
  export declare interface JsonApiApiTokenOutList {
44861
45091
  data: Array<JsonApiApiTokenOutWithLinks>;
44862
45092
  links?: ListLinks;
44863
- meta?: JsonApiAggregatedFactOutListMeta;
45093
+ meta?: JsonApiColorPaletteOutListMeta;
44864
45094
  }
44865
45095
 
44866
45096
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -44939,7 +45169,7 @@ export declare interface JsonApiAttributeHierarchyOut {
44939
45169
  * API identifier of an object
44940
45170
  */
44941
45171
  id: string;
44942
- meta?: JsonApiDatasetOutMeta;
45172
+ meta?: JsonApiVisualizationObjectOutMeta;
44943
45173
  attributes?: JsonApiAttributeHierarchyOutAttributes;
44944
45174
  relationships?: JsonApiAttributeHierarchyOutRelationships;
44945
45175
  }
@@ -44977,7 +45207,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
44977
45207
  export declare interface JsonApiAttributeHierarchyOutList {
44978
45208
  data: Array<JsonApiAttributeHierarchyOutWithLinks>;
44979
45209
  links?: ListLinks;
44980
- meta?: JsonApiAggregatedFactOutListMeta;
45210
+ meta?: JsonApiColorPaletteOutListMeta;
44981
45211
  /**
44982
45212
  * Included resources
44983
45213
  */
@@ -44987,7 +45217,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
44987
45217
  export declare interface JsonApiAttributeHierarchyOutRelationships {
44988
45218
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44989
45219
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44990
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
45220
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
44991
45221
  }
44992
45222
 
44993
45223
  export declare const JsonApiAttributeHierarchyOutTypeEnum: {
@@ -45005,7 +45235,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
45005
45235
  * API identifier of an object
45006
45236
  */
45007
45237
  id: string;
45008
- meta?: JsonApiDatasetOutMeta;
45238
+ meta?: JsonApiVisualizationObjectOutMeta;
45009
45239
  attributes?: JsonApiAttributeHierarchyOutAttributes;
45010
45240
  relationships?: JsonApiAttributeHierarchyOutRelationships;
45011
45241
  links?: ObjectLinks;
@@ -45079,7 +45309,7 @@ export declare interface JsonApiAttributeOut {
45079
45309
  * API identifier of an object
45080
45310
  */
45081
45311
  id: string;
45082
- meta?: JsonApiDatasetOutMeta;
45312
+ meta?: JsonApiVisualizationObjectOutMeta;
45083
45313
  attributes?: JsonApiAttributeOutAttributes;
45084
45314
  relationships?: JsonApiAttributeOutRelationships;
45085
45315
  }
@@ -45157,7 +45387,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
45157
45387
  export declare interface JsonApiAttributeOutList {
45158
45388
  data: Array<JsonApiAttributeOutWithLinks>;
45159
45389
  links?: ListLinks;
45160
- meta?: JsonApiAggregatedFactOutListMeta;
45390
+ meta?: JsonApiColorPaletteOutListMeta;
45161
45391
  /**
45162
45392
  * Included resources
45163
45393
  */
@@ -45165,7 +45395,7 @@ export declare interface JsonApiAttributeOutList {
45165
45395
  }
45166
45396
 
45167
45397
  export declare interface JsonApiAttributeOutRelationships {
45168
- dataset?: JsonApiFactOutRelationshipsDataset;
45398
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
45169
45399
  defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
45170
45400
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
45171
45401
  attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
@@ -45178,6 +45408,10 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
45178
45408
  data: Array<JsonApiAttributeHierarchyLinkage>;
45179
45409
  }
45180
45410
 
45411
+ export declare interface JsonApiAttributeOutRelationshipsDataset {
45412
+ data: JsonApiDatasetLinkage | null;
45413
+ }
45414
+
45181
45415
  export declare interface JsonApiAttributeOutRelationshipsDefaultView {
45182
45416
  data: JsonApiLabelLinkage | null;
45183
45417
  }
@@ -45197,7 +45431,7 @@ export declare interface JsonApiAttributeOutWithLinks {
45197
45431
  * API identifier of an object
45198
45432
  */
45199
45433
  id: string;
45200
- meta?: JsonApiDatasetOutMeta;
45434
+ meta?: JsonApiVisualizationObjectOutMeta;
45201
45435
  attributes?: JsonApiAttributeOutAttributes;
45202
45436
  relationships?: JsonApiAttributeOutRelationships;
45203
45437
  links?: ObjectLinks;
@@ -45261,7 +45495,7 @@ export declare interface JsonApiAutomationOut {
45261
45495
  * API identifier of an object
45262
45496
  */
45263
45497
  id: string;
45264
- meta?: JsonApiDatasetOutMeta;
45498
+ meta?: JsonApiVisualizationObjectOutMeta;
45265
45499
  attributes?: JsonApiAutomationOutAttributes;
45266
45500
  relationships?: JsonApiAutomationOutRelationships;
45267
45501
  }
@@ -45275,7 +45509,7 @@ export declare interface JsonApiAutomationOutAttributes {
45275
45509
  * Additional details to be included in the automated message.
45276
45510
  */
45277
45511
  details?: object;
45278
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
45512
+ metadata?: JsonApiAutomationPatchAttributesMetadata | null;
45279
45513
  /**
45280
45514
  * Current state of the automation.
45281
45515
  */
@@ -45284,42 +45518,22 @@ export declare interface JsonApiAutomationOutAttributes {
45284
45518
  * Specify automation evaluation mode.
45285
45519
  */
45286
45520
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
45287
- schedule?: JsonApiAutomationOutAttributesSchedule;
45288
- alert?: JsonApiAutomationOutAttributesAlert;
45289
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
45290
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
45291
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
45292
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
45293
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
45294
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
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>;
45295
45529
  /**
45296
45530
  * External recipients of the automation action results.
45297
45531
  */
45298
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
45532
+ externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
45299
45533
  createdAt?: string;
45300
45534
  modifiedAt?: string;
45301
45535
  }
45302
45536
 
45303
- export declare interface JsonApiAutomationOutAttributesAlert {
45304
- execution: AlertAfm;
45305
- condition: AlertCondition;
45306
- /**
45307
- * 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.
45308
- */
45309
- trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
45310
- }
45311
-
45312
- export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
45313
- readonly ALWAYS: "ALWAYS";
45314
- readonly ONCE: "ONCE";
45315
- };
45316
-
45317
- export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
45318
-
45319
- export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
45320
- requestPayload: DashboardTabularExportRequestV2;
45321
- }
45322
-
45323
45537
  export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
45324
45538
  readonly SHARED: "SHARED";
45325
45539
  readonly PER_RECIPIENT: "PER_RECIPIENT";
@@ -45327,52 +45541,6 @@ export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
45327
45541
 
45328
45542
  export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
45329
45543
 
45330
- export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
45331
- /**
45332
- * E-mail address to send notifications from.
45333
- */
45334
- email: string;
45335
- }
45336
-
45337
- export declare interface JsonApiAutomationOutAttributesImageExportsInner {
45338
- requestPayload: ImageExportRequest;
45339
- }
45340
-
45341
- /**
45342
- * Additional information for the automation.
45343
- */
45344
- export declare interface JsonApiAutomationOutAttributesMetadata {
45345
- widget?: string;
45346
- visibleFilters?: Array<VisibleFilter>;
45347
- }
45348
-
45349
- export declare interface JsonApiAutomationOutAttributesRawExportsInner {
45350
- requestPayload: RawExportAutomationRequest;
45351
- }
45352
-
45353
- export declare interface JsonApiAutomationOutAttributesSchedule {
45354
- /**
45355
- * 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.
45356
- */
45357
- cron: string;
45358
- /**
45359
- * Human-readable description of the cron expression.
45360
- */
45361
- cronDescription?: string;
45362
- /**
45363
- * Timezone in which the schedule is defined.
45364
- */
45365
- timezone: string;
45366
- /**
45367
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
45368
- */
45369
- firstRun?: string;
45370
- }
45371
-
45372
- export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
45373
- requestPayload: SlidesExportRequest;
45374
- }
45375
-
45376
45544
  export declare const JsonApiAutomationOutAttributesStateEnum: {
45377
45545
  readonly ACTIVE: "ACTIVE";
45378
45546
  readonly PAUSED: "PAUSED";
@@ -45380,14 +45548,6 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
45380
45548
 
45381
45549
  export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
45382
45550
 
45383
- export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
45384
- requestPayload: TabularExportRequest;
45385
- }
45386
-
45387
- export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
45388
- requestPayload: VisualExportRequest;
45389
- }
45390
-
45391
45551
  export declare interface JsonApiAutomationOutDocument {
45392
45552
  data: JsonApiAutomationOut;
45393
45553
  links?: ObjectLinks;
@@ -45408,7 +45568,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
45408
45568
  export declare interface JsonApiAutomationOutList {
45409
45569
  data: Array<JsonApiAutomationOutWithLinks>;
45410
45570
  links?: ListLinks;
45411
- meta?: JsonApiAggregatedFactOutListMeta;
45571
+ meta?: JsonApiColorPaletteOutListMeta;
45412
45572
  /**
45413
45573
  * Included resources
45414
45574
  */
@@ -45416,12 +45576,12 @@ export declare interface JsonApiAutomationOutList {
45416
45576
  }
45417
45577
 
45418
45578
  export declare interface JsonApiAutomationOutRelationships {
45419
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
45420
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
45579
+ notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
45580
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
45421
45581
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45422
45582
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45423
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
45424
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
45583
+ exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
45584
+ recipients?: JsonApiAutomationPatchRelationshipsRecipients;
45425
45585
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
45426
45586
  }
45427
45587
 
@@ -45432,24 +45592,6 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
45432
45592
  data: Array<JsonApiAutomationResultLinkage>;
45433
45593
  }
45434
45594
 
45435
- export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
45436
- /**
45437
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
45438
- */
45439
- data: Array<JsonApiExportDefinitionLinkage>;
45440
- }
45441
-
45442
- export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
45443
- data: JsonApiNotificationChannelLinkage | null;
45444
- }
45445
-
45446
- export declare interface JsonApiAutomationOutRelationshipsRecipients {
45447
- /**
45448
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
45449
- */
45450
- data: Array<JsonApiUserLinkage>;
45451
- }
45452
-
45453
45595
  export declare const JsonApiAutomationOutTypeEnum: {
45454
45596
  readonly AUTOMATION: "automation";
45455
45597
  };
@@ -45465,7 +45607,7 @@ export declare interface JsonApiAutomationOutWithLinks {
45465
45607
  * API identifier of an object
45466
45608
  */
45467
45609
  id: string;
45468
- meta?: JsonApiDatasetOutMeta;
45610
+ meta?: JsonApiVisualizationObjectOutMeta;
45469
45611
  attributes?: JsonApiAutomationOutAttributes;
45470
45612
  relationships?: JsonApiAutomationOutRelationships;
45471
45613
  links?: ObjectLinks;
@@ -45502,7 +45644,7 @@ export declare interface JsonApiAutomationPatchAttributes {
45502
45644
  * Additional details to be included in the automated message.
45503
45645
  */
45504
45646
  details?: object;
45505
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
45647
+ metadata?: JsonApiAutomationPatchAttributesMetadata | null;
45506
45648
  /**
45507
45649
  * Current state of the automation.
45508
45650
  */
@@ -45511,18 +45653,38 @@ export declare interface JsonApiAutomationPatchAttributes {
45511
45653
  * Specify automation evaluation mode.
45512
45654
  */
45513
45655
  evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
45514
- schedule?: JsonApiAutomationOutAttributesSchedule;
45515
- alert?: JsonApiAutomationOutAttributesAlert;
45516
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
45517
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
45518
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
45519
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
45520
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
45521
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
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>;
45522
45664
  /**
45523
45665
  * External recipients of the automation action results.
45524
45666
  */
45525
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
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;
45526
45688
  }
45527
45689
 
45528
45690
  export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
@@ -45532,6 +45694,53 @@ export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
45532
45694
 
45533
45695
  export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
45534
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
+
45535
45744
  export declare const JsonApiAutomationPatchAttributesStateEnum: {
45536
45745
  readonly ACTIVE: "ACTIVE";
45537
45746
  readonly PAUSED: "PAUSED";
@@ -45539,15 +45748,45 @@ export declare const JsonApiAutomationPatchAttributesStateEnum: {
45539
45748
 
45540
45749
  export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
45541
45750
 
45751
+ export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
45752
+ requestPayload: TabularExportRequest;
45753
+ }
45754
+
45755
+ export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
45756
+ requestPayload: VisualExportRequest;
45757
+ }
45758
+
45542
45759
  export declare interface JsonApiAutomationPatchDocument {
45543
45760
  data: JsonApiAutomationPatch;
45544
45761
  }
45545
45762
 
45546
45763
  export declare interface JsonApiAutomationPatchRelationships {
45547
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
45548
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
45549
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
45550
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
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>;
45551
45790
  }
45552
45791
 
45553
45792
  export declare const JsonApiAutomationPatchTypeEnum: {
@@ -45695,7 +45934,11 @@ export declare interface JsonApiColorPaletteOutDocument {
45695
45934
  export declare interface JsonApiColorPaletteOutList {
45696
45935
  data: Array<JsonApiColorPaletteOutWithLinks>;
45697
45936
  links?: ListLinks;
45698
- meta?: JsonApiAggregatedFactOutListMeta;
45937
+ meta?: JsonApiColorPaletteOutListMeta;
45938
+ }
45939
+
45940
+ export declare interface JsonApiColorPaletteOutListMeta {
45941
+ page?: PageMetadata;
45699
45942
  }
45700
45943
 
45701
45944
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -45768,7 +46011,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
45768
46011
  * API identifier of an object
45769
46012
  */
45770
46013
  id: string;
45771
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
46014
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
45772
46015
  }
45773
46016
 
45774
46017
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -45793,15 +46036,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
45793
46036
  * API identifier of an object
45794
46037
  */
45795
46038
  id: string;
45796
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
45797
- }
45798
-
45799
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
45800
- lastRotation?: string;
45801
- /**
45802
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
45803
- */
45804
- rotationInterval?: string;
46039
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
45805
46040
  }
45806
46041
 
45807
46042
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -45827,7 +46062,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
45827
46062
  * API identifier of an object
45828
46063
  */
45829
46064
  id: string;
45830
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
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;
45831
46074
  }
45832
46075
 
45833
46076
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -45895,7 +46138,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
45895
46138
  export declare interface JsonApiCspDirectiveOutList {
45896
46139
  data: Array<JsonApiCspDirectiveOutWithLinks>;
45897
46140
  links?: ListLinks;
45898
- meta?: JsonApiAggregatedFactOutListMeta;
46141
+ meta?: JsonApiColorPaletteOutListMeta;
45899
46142
  }
45900
46143
 
45901
46144
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -45989,7 +46232,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
45989
46232
  * API identifier of an object
45990
46233
  */
45991
46234
  id: string;
45992
- meta?: JsonApiDatasetOutMeta;
46235
+ meta?: JsonApiVisualizationObjectOutMeta;
45993
46236
  attributes: JsonApiCustomApplicationSettingOutAttributes;
45994
46237
  }
45995
46238
 
@@ -46012,7 +46255,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
46012
46255
  export declare interface JsonApiCustomApplicationSettingOutList {
46013
46256
  data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
46014
46257
  links?: ListLinks;
46015
- meta?: JsonApiAggregatedFactOutListMeta;
46258
+ meta?: JsonApiColorPaletteOutListMeta;
46016
46259
  }
46017
46260
 
46018
46261
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -46030,7 +46273,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
46030
46273
  * API identifier of an object
46031
46274
  */
46032
46275
  id: string;
46033
- meta?: JsonApiDatasetOutMeta;
46276
+ meta?: JsonApiVisualizationObjectOutMeta;
46034
46277
  attributes: JsonApiCustomApplicationSettingOutAttributes;
46035
46278
  links?: ObjectLinks;
46036
46279
  }
@@ -46150,7 +46393,7 @@ export declare interface JsonApiDashboardPluginOut {
46150
46393
  * API identifier of an object
46151
46394
  */
46152
46395
  id: string;
46153
- meta?: JsonApiDatasetOutMeta;
46396
+ meta?: JsonApiVisualizationObjectOutMeta;
46154
46397
  attributes?: JsonApiDashboardPluginOutAttributes;
46155
46398
  relationships?: JsonApiDashboardPluginOutRelationships;
46156
46399
  }
@@ -46183,7 +46426,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
46183
46426
  export declare interface JsonApiDashboardPluginOutList {
46184
46427
  data: Array<JsonApiDashboardPluginOutWithLinks>;
46185
46428
  links?: ListLinks;
46186
- meta?: JsonApiAggregatedFactOutListMeta;
46429
+ meta?: JsonApiColorPaletteOutListMeta;
46187
46430
  /**
46188
46431
  * Included resources
46189
46432
  */
@@ -46210,7 +46453,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
46210
46453
  * API identifier of an object
46211
46454
  */
46212
46455
  id: string;
46213
- meta?: JsonApiDatasetOutMeta;
46456
+ meta?: JsonApiVisualizationObjectOutMeta;
46214
46457
  attributes?: JsonApiDashboardPluginOutAttributes;
46215
46458
  relationships?: JsonApiDashboardPluginOutRelationships;
46216
46459
  links?: ObjectLinks;
@@ -46309,7 +46552,7 @@ export declare interface JsonApiDatasetOut {
46309
46552
  * API identifier of an object
46310
46553
  */
46311
46554
  id: string;
46312
- meta?: JsonApiDatasetOutMeta;
46555
+ meta?: JsonApiVisualizationObjectOutMeta;
46313
46556
  attributes: JsonApiDatasetOutAttributes;
46314
46557
  relationships?: JsonApiDatasetOutRelationships;
46315
46558
  }
@@ -46435,40 +46678,18 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
46435
46678
  export declare interface JsonApiDatasetOutList {
46436
46679
  data: Array<JsonApiDatasetOutWithLinks>;
46437
46680
  links?: ListLinks;
46438
- meta?: JsonApiAggregatedFactOutListMeta;
46681
+ meta?: JsonApiColorPaletteOutListMeta;
46439
46682
  /**
46440
46683
  * Included resources
46441
46684
  */
46442
46685
  included?: Array<JsonApiDatasetOutIncludes>;
46443
46686
  }
46444
46687
 
46445
- export declare interface JsonApiDatasetOutMeta {
46446
- origin?: JsonApiDatasetOutMetaOrigin;
46447
- }
46448
-
46449
- export declare interface JsonApiDatasetOutMetaOrigin {
46450
- /**
46451
- * defines type of the origin of the entity
46452
- */
46453
- originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
46454
- /**
46455
- * defines id of the workspace where the entity comes from
46456
- */
46457
- originId: string;
46458
- }
46459
-
46460
- export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
46461
- readonly NATIVE: "NATIVE";
46462
- readonly PARENT: "PARENT";
46463
- };
46464
-
46465
- export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
46466
-
46467
46688
  export declare interface JsonApiDatasetOutRelationships {
46468
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
46469
- facts?: JsonApiDatasetOutRelationshipsFacts;
46689
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
46690
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
46470
46691
  aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
46471
- references?: JsonApiDatasetOutRelationshipsReferences;
46692
+ references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
46472
46693
  workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
46473
46694
  }
46474
46695
 
@@ -46479,27 +46700,6 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
46479
46700
  data: Array<JsonApiAggregatedFactLinkage>;
46480
46701
  }
46481
46702
 
46482
- export declare interface JsonApiDatasetOutRelationshipsAttributes {
46483
- /**
46484
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46485
- */
46486
- data: Array<JsonApiAttributeLinkage>;
46487
- }
46488
-
46489
- export declare interface JsonApiDatasetOutRelationshipsFacts {
46490
- /**
46491
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46492
- */
46493
- data: Array<JsonApiFactLinkage>;
46494
- }
46495
-
46496
- export declare interface JsonApiDatasetOutRelationshipsReferences {
46497
- /**
46498
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46499
- */
46500
- data: Array<JsonApiDatasetLinkage>;
46501
- }
46502
-
46503
46703
  export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
46504
46704
  /**
46505
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.
@@ -46522,7 +46722,7 @@ export declare interface JsonApiDatasetOutWithLinks {
46522
46722
  * API identifier of an object
46523
46723
  */
46524
46724
  id: string;
46525
- meta?: JsonApiDatasetOutMeta;
46725
+ meta?: JsonApiVisualizationObjectOutMeta;
46526
46726
  attributes: JsonApiDatasetOutAttributes;
46527
46727
  relationships?: JsonApiDatasetOutRelationships;
46528
46728
  links?: ObjectLinks;
@@ -46546,7 +46746,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
46546
46746
  * API identifier of an object
46547
46747
  */
46548
46748
  id: string;
46549
- meta?: JsonApiDataSourceOutMeta;
46749
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46550
46750
  attributes: JsonApiDataSourceIdentifierOutAttributes;
46551
46751
  }
46552
46752
 
@@ -46598,9 +46798,23 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
46598
46798
  export declare interface JsonApiDataSourceIdentifierOutList {
46599
46799
  data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
46600
46800
  links?: ListLinks;
46601
- meta?: JsonApiAggregatedFactOutListMeta;
46801
+ meta?: JsonApiColorPaletteOutListMeta;
46602
46802
  }
46603
46803
 
46804
+ export declare interface JsonApiDataSourceIdentifierOutMeta {
46805
+ /**
46806
+ * List of valid permissions for a logged-in user.
46807
+ */
46808
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
46809
+ }
46810
+
46811
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
46812
+ readonly MANAGE: "MANAGE";
46813
+ readonly USE: "USE";
46814
+ };
46815
+
46816
+ export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
46817
+
46604
46818
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
46605
46819
  readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
46606
46820
  };
@@ -46616,7 +46830,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
46616
46830
  * API identifier of an object
46617
46831
  */
46618
46832
  id: string;
46619
- meta?: JsonApiDataSourceOutMeta;
46833
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46620
46834
  attributes: JsonApiDataSourceIdentifierOutAttributes;
46621
46835
  links?: ObjectLinks;
46622
46836
  }
@@ -46690,7 +46904,7 @@ export declare interface JsonApiDataSourceInAttributes {
46690
46904
  /**
46691
46905
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46692
46906
  */
46693
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
46907
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
46694
46908
  /**
46695
46909
  * Determines how the results coming from a particular datasource should be cached.
46696
46910
  */
@@ -46757,7 +46971,7 @@ export declare interface JsonApiDataSourceOut {
46757
46971
  * API identifier of an object
46758
46972
  */
46759
46973
  id: string;
46760
- meta?: JsonApiDataSourceOutMeta;
46974
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46761
46975
  attributes: JsonApiDataSourceOutAttributes;
46762
46976
  }
46763
46977
 
@@ -46789,11 +47003,11 @@ export declare interface JsonApiDataSourceOutAttributes {
46789
47003
  /**
46790
47004
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46791
47005
  */
46792
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47006
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
46793
47007
  /**
46794
47008
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
46795
47009
  */
46796
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47010
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
46797
47011
  /**
46798
47012
  * Determines how the results coming from a particular datasource should be cached.
46799
47013
  */
@@ -46821,6 +47035,11 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
46821
47035
 
46822
47036
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
46823
47037
 
47038
+ export declare interface JsonApiDataSourceOutAttributesParametersInner {
47039
+ name: string;
47040
+ value: string;
47041
+ }
47042
+
46824
47043
  export declare const JsonApiDataSourceOutAttributesTypeEnum: {
46825
47044
  readonly POSTGRESQL: "POSTGRESQL";
46826
47045
  readonly REDSHIFT: "REDSHIFT";
@@ -46863,23 +47082,9 @@ export declare interface JsonApiDataSourceOutDocument {
46863
47082
  export declare interface JsonApiDataSourceOutList {
46864
47083
  data: Array<JsonApiDataSourceOutWithLinks>;
46865
47084
  links?: ListLinks;
46866
- meta?: JsonApiAggregatedFactOutListMeta;
46867
- }
46868
-
46869
- export declare interface JsonApiDataSourceOutMeta {
46870
- /**
46871
- * List of valid permissions for a logged-in user.
46872
- */
46873
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
47085
+ meta?: JsonApiColorPaletteOutListMeta;
46874
47086
  }
46875
47087
 
46876
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
46877
- readonly MANAGE: "MANAGE";
46878
- readonly USE: "USE";
46879
- };
46880
-
46881
- export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
46882
-
46883
47088
  export declare const JsonApiDataSourceOutTypeEnum: {
46884
47089
  readonly DATA_SOURCE: "dataSource";
46885
47090
  };
@@ -46895,7 +47100,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
46895
47100
  * API identifier of an object
46896
47101
  */
46897
47102
  id: string;
46898
- meta?: JsonApiDataSourceOutMeta;
47103
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46899
47104
  attributes: JsonApiDataSourceOutAttributes;
46900
47105
  links?: ObjectLinks;
46901
47106
  }
@@ -46969,7 +47174,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
46969
47174
  /**
46970
47175
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46971
47176
  */
46972
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47177
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
46973
47178
  /**
46974
47179
  * Determines how the results coming from a particular datasource should be cached.
46975
47180
  */
@@ -46983,11 +47188,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
46983
47188
 
46984
47189
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
46985
47190
 
46986
- export declare interface JsonApiDataSourcePatchAttributesParametersInner {
46987
- name: string;
46988
- value: string;
46989
- }
46990
-
46991
47191
  export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
46992
47192
  readonly POSTGRESQL: "POSTGRESQL";
46993
47193
  readonly REDSHIFT: "REDSHIFT";
@@ -47060,7 +47260,7 @@ export declare interface JsonApiEntitlementOutDocument {
47060
47260
  export declare interface JsonApiEntitlementOutList {
47061
47261
  data: Array<JsonApiEntitlementOutWithLinks>;
47062
47262
  links?: ListLinks;
47063
- meta?: JsonApiAggregatedFactOutListMeta;
47263
+ meta?: JsonApiColorPaletteOutListMeta;
47064
47264
  }
47065
47265
 
47066
47266
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -47140,7 +47340,7 @@ export declare interface JsonApiExportDefinitionOut {
47140
47340
  * API identifier of an object
47141
47341
  */
47142
47342
  id: string;
47143
- meta?: JsonApiDatasetOutMeta;
47343
+ meta?: JsonApiVisualizationObjectOutMeta;
47144
47344
  attributes?: JsonApiExportDefinitionOutAttributes;
47145
47345
  relationships?: JsonApiExportDefinitionOutRelationships;
47146
47346
  }
@@ -47181,7 +47381,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
47181
47381
  export declare interface JsonApiExportDefinitionOutList {
47182
47382
  data: Array<JsonApiExportDefinitionOutWithLinks>;
47183
47383
  links?: ListLinks;
47184
- meta?: JsonApiAggregatedFactOutListMeta;
47384
+ meta?: JsonApiColorPaletteOutListMeta;
47185
47385
  /**
47186
47386
  * Included resources
47187
47387
  */
@@ -47190,16 +47390,12 @@ export declare interface JsonApiExportDefinitionOutList {
47190
47390
 
47191
47391
  export declare interface JsonApiExportDefinitionOutRelationships {
47192
47392
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47193
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47393
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
47194
47394
  automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
47195
47395
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47196
47396
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47197
47397
  }
47198
47398
 
47199
- export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
47200
- data: JsonApiAnalyticalDashboardLinkage | null;
47201
- }
47202
-
47203
47399
  export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
47204
47400
  data: JsonApiAutomationLinkage | null;
47205
47401
  }
@@ -47223,7 +47419,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
47223
47419
  * API identifier of an object
47224
47420
  */
47225
47421
  id: string;
47226
- meta?: JsonApiDatasetOutMeta;
47422
+ meta?: JsonApiVisualizationObjectOutMeta;
47227
47423
  attributes?: JsonApiExportDefinitionOutAttributes;
47228
47424
  relationships?: JsonApiExportDefinitionOutRelationships;
47229
47425
  links?: ObjectLinks;
@@ -47265,7 +47461,7 @@ export declare interface JsonApiExportDefinitionPatchDocument {
47265
47461
 
47266
47462
  export declare interface JsonApiExportDefinitionPatchRelationships {
47267
47463
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47268
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47464
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
47269
47465
  }
47270
47466
 
47271
47467
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
@@ -47345,10 +47541,49 @@ export declare interface JsonApiExportTemplateOutAttributes {
47345
47541
  * User-facing name of the Slides template.
47346
47542
  */
47347
47543
  name: string;
47348
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47349
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47544
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47545
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47546
+ }
47547
+
47548
+ /**
47549
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47550
+ */
47551
+ export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
47552
+ /**
47553
+ * Export types this template applies to.
47554
+ */
47555
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
47556
+ coverSlide?: CoverSlideTemplate | null;
47557
+ introSlide?: IntroSlideTemplate | null;
47558
+ sectionSlide?: SectionSlideTemplate | null;
47559
+ contentSlide?: ContentSlideTemplate | null;
47560
+ }
47561
+
47562
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
47563
+ readonly PDF: "PDF";
47564
+ readonly PPTX: "PPTX";
47565
+ };
47566
+
47567
+ export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
47568
+
47569
+ /**
47570
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47571
+ */
47572
+ export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
47573
+ /**
47574
+ * Export types this template applies to.
47575
+ */
47576
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
47577
+ contentSlide?: ContentSlideTemplate | null;
47350
47578
  }
47351
47579
 
47580
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
47581
+ readonly PDF: "PDF";
47582
+ readonly PPTX: "PPTX";
47583
+ };
47584
+
47585
+ export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
47586
+
47352
47587
  export declare interface JsonApiExportTemplateOutDocument {
47353
47588
  data: JsonApiExportTemplateOut;
47354
47589
  links?: ObjectLinks;
@@ -47360,7 +47595,7 @@ export declare interface JsonApiExportTemplateOutDocument {
47360
47595
  export declare interface JsonApiExportTemplateOutList {
47361
47596
  data: Array<JsonApiExportTemplateOutWithLinks>;
47362
47597
  links?: ListLinks;
47363
- meta?: JsonApiAggregatedFactOutListMeta;
47598
+ meta?: JsonApiColorPaletteOutListMeta;
47364
47599
  }
47365
47600
 
47366
47601
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -47408,49 +47643,10 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47408
47643
  * User-facing name of the Slides template.
47409
47644
  */
47410
47645
  name?: string;
47411
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47412
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47413
- }
47414
-
47415
- /**
47416
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47417
- */
47418
- export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
47419
- /**
47420
- * Export types this template applies to.
47421
- */
47422
- appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
47423
- coverSlide?: CoverSlideTemplate | null;
47424
- introSlide?: IntroSlideTemplate | null;
47425
- sectionSlide?: SectionSlideTemplate | null;
47426
- contentSlide?: ContentSlideTemplate | null;
47427
- }
47428
-
47429
- export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
47430
- readonly PDF: "PDF";
47431
- readonly PPTX: "PPTX";
47432
- };
47433
-
47434
- export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
47435
-
47436
- /**
47437
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47438
- */
47439
- export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
47440
- /**
47441
- * Export types this template applies to.
47442
- */
47443
- appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
47444
- contentSlide?: ContentSlideTemplate | null;
47646
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47647
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47445
47648
  }
47446
47649
 
47447
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
47448
- readonly PDF: "PDF";
47449
- readonly PPTX: "PPTX";
47450
- };
47451
-
47452
- export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
47453
-
47454
47650
  export declare interface JsonApiExportTemplatePatchDocument {
47455
47651
  data: JsonApiExportTemplatePatch;
47456
47652
  }
@@ -47512,7 +47708,7 @@ export declare interface JsonApiFactOut {
47512
47708
  * API identifier of an object
47513
47709
  */
47514
47710
  id: string;
47515
- meta?: JsonApiDatasetOutMeta;
47711
+ meta?: JsonApiVisualizationObjectOutMeta;
47516
47712
  attributes?: JsonApiFactOutAttributes;
47517
47713
  relationships?: JsonApiFactOutRelationships;
47518
47714
  }
@@ -47554,7 +47750,7 @@ export declare interface JsonApiFactOutDocument {
47554
47750
  export declare interface JsonApiFactOutList {
47555
47751
  data: Array<JsonApiFactOutWithLinks>;
47556
47752
  links?: ListLinks;
47557
- meta?: JsonApiAggregatedFactOutListMeta;
47753
+ meta?: JsonApiColorPaletteOutListMeta;
47558
47754
  /**
47559
47755
  * Included resources
47560
47756
  */
@@ -47562,11 +47758,7 @@ export declare interface JsonApiFactOutList {
47562
47758
  }
47563
47759
 
47564
47760
  export declare interface JsonApiFactOutRelationships {
47565
- dataset?: JsonApiFactOutRelationshipsDataset;
47566
- }
47567
-
47568
- export declare interface JsonApiFactOutRelationshipsDataset {
47569
- data: JsonApiDatasetLinkage | null;
47761
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
47570
47762
  }
47571
47763
 
47572
47764
  export declare const JsonApiFactOutTypeEnum: {
@@ -47584,7 +47776,7 @@ export declare interface JsonApiFactOutWithLinks {
47584
47776
  * API identifier of an object
47585
47777
  */
47586
47778
  id: string;
47587
- meta?: JsonApiDatasetOutMeta;
47779
+ meta?: JsonApiVisualizationObjectOutMeta;
47588
47780
  attributes?: JsonApiFactOutAttributes;
47589
47781
  relationships?: JsonApiFactOutRelationships;
47590
47782
  links?: ObjectLinks;
@@ -47647,7 +47839,7 @@ export declare interface JsonApiFilterContextOut {
47647
47839
  * API identifier of an object
47648
47840
  */
47649
47841
  id: string;
47650
- meta?: JsonApiDatasetOutMeta;
47842
+ meta?: JsonApiVisualizationObjectOutMeta;
47651
47843
  attributes: JsonApiFilterContextOutAttributes;
47652
47844
  relationships?: JsonApiFilterContextOutRelationships;
47653
47845
  }
@@ -47683,7 +47875,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
47683
47875
  export declare interface JsonApiFilterContextOutList {
47684
47876
  data: Array<JsonApiFilterContextOutWithLinks>;
47685
47877
  links?: ListLinks;
47686
- meta?: JsonApiAggregatedFactOutListMeta;
47878
+ meta?: JsonApiColorPaletteOutListMeta;
47687
47879
  /**
47688
47880
  * Included resources
47689
47881
  */
@@ -47691,8 +47883,8 @@ export declare interface JsonApiFilterContextOutList {
47691
47883
  }
47692
47884
 
47693
47885
  export declare interface JsonApiFilterContextOutRelationships {
47694
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
47695
- datasets?: JsonApiDatasetOutRelationshipsReferences;
47886
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
47887
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
47696
47888
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
47697
47889
  }
47698
47890
 
@@ -47711,7 +47903,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
47711
47903
  * API identifier of an object
47712
47904
  */
47713
47905
  id: string;
47714
- meta?: JsonApiDatasetOutMeta;
47906
+ meta?: JsonApiVisualizationObjectOutMeta;
47715
47907
  attributes: JsonApiFilterContextOutAttributes;
47716
47908
  relationships?: JsonApiFilterContextOutRelationships;
47717
47909
  links?: ObjectLinks;
@@ -47786,7 +47978,7 @@ export declare interface JsonApiFilterViewIn {
47786
47978
  */
47787
47979
  id: string;
47788
47980
  attributes: JsonApiFilterViewOutAttributes;
47789
- relationships?: JsonApiFilterViewOutRelationships;
47981
+ relationships?: JsonApiFilterViewPatchRelationships;
47790
47982
  }
47791
47983
 
47792
47984
  export declare interface JsonApiFilterViewInDocument {
@@ -47812,7 +48004,7 @@ export declare interface JsonApiFilterViewOut {
47812
48004
  */
47813
48005
  id: string;
47814
48006
  attributes: JsonApiFilterViewOutAttributes;
47815
- relationships?: JsonApiFilterViewOutRelationships;
48007
+ relationships?: JsonApiFilterViewPatchRelationships;
47816
48008
  }
47817
48009
 
47818
48010
  export declare interface JsonApiFilterViewOutAttributes {
@@ -47850,18 +48042,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
47850
48042
  export declare interface JsonApiFilterViewOutList {
47851
48043
  data: Array<JsonApiFilterViewOutWithLinks>;
47852
48044
  links?: ListLinks;
47853
- meta?: JsonApiAggregatedFactOutListMeta;
48045
+ meta?: JsonApiColorPaletteOutListMeta;
47854
48046
  /**
47855
48047
  * Included resources
47856
48048
  */
47857
48049
  included?: Array<JsonApiFilterViewOutIncludes>;
47858
48050
  }
47859
48051
 
47860
- export declare interface JsonApiFilterViewOutRelationships {
47861
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47862
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
47863
- }
47864
-
47865
48052
  export declare const JsonApiFilterViewOutTypeEnum: {
47866
48053
  readonly FILTER_VIEW: "filterView";
47867
48054
  };
@@ -47878,7 +48065,7 @@ export declare interface JsonApiFilterViewOutWithLinks {
47878
48065
  */
47879
48066
  id: string;
47880
48067
  attributes: JsonApiFilterViewOutAttributes;
47881
- relationships?: JsonApiFilterViewOutRelationships;
48068
+ relationships?: JsonApiFilterViewPatchRelationships;
47882
48069
  links?: ObjectLinks;
47883
48070
  }
47884
48071
 
@@ -47901,7 +48088,7 @@ export declare interface JsonApiFilterViewPatch {
47901
48088
  */
47902
48089
  id: string;
47903
48090
  attributes: JsonApiFilterViewPatchAttributes;
47904
- relationships?: JsonApiFilterViewOutRelationships;
48091
+ relationships?: JsonApiFilterViewPatchRelationships;
47905
48092
  }
47906
48093
 
47907
48094
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -47923,6 +48110,11 @@ export declare interface JsonApiFilterViewPatchDocument {
47923
48110
  data: JsonApiFilterViewPatch;
47924
48111
  }
47925
48112
 
48113
+ export declare interface JsonApiFilterViewPatchRelationships {
48114
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
48115
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
48116
+ }
48117
+
47926
48118
  export declare const JsonApiFilterViewPatchTypeEnum: {
47927
48119
  readonly FILTER_VIEW: "filterView";
47928
48120
  };
@@ -47946,49 +48138,10 @@ export declare interface JsonApiIdentityProviderIn {
47946
48138
  * API identifier of an object
47947
48139
  */
47948
48140
  id: string;
47949
- attributes?: JsonApiIdentityProviderPatchAttributes;
47950
- }
47951
-
47952
- export declare interface JsonApiIdentityProviderInDocument {
47953
- data: JsonApiIdentityProviderIn;
47954
- }
47955
-
47956
- export declare const JsonApiIdentityProviderInTypeEnum: {
47957
- readonly IDENTITY_PROVIDER: "identityProvider";
47958
- };
47959
-
47960
- export declare type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
47961
-
47962
- /**
47963
- * The \\\"type\\\" and \\\"id\\\" to non-empty members.
47964
- */
47965
- export declare interface JsonApiIdentityProviderLinkage {
47966
- id: string;
47967
- type: JsonApiIdentityProviderLinkageTypeEnum;
47968
- }
47969
-
47970
- export declare const JsonApiIdentityProviderLinkageTypeEnum: {
47971
- readonly IDENTITY_PROVIDER: "identityProvider";
47972
- };
47973
-
47974
- export declare type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
47975
-
47976
- /**
47977
- * JSON:API representation of identityProvider entity.
47978
- */
47979
- export declare interface JsonApiIdentityProviderOut {
47980
- /**
47981
- * Object type
47982
- */
47983
- type: JsonApiIdentityProviderOutTypeEnum;
47984
- /**
47985
- * API identifier of an object
47986
- */
47987
- id: string;
47988
- attributes?: JsonApiIdentityProviderOutAttributes;
48141
+ attributes?: JsonApiIdentityProviderInAttributes;
47989
48142
  }
47990
48143
 
47991
- export declare interface JsonApiIdentityProviderOutAttributes {
48144
+ export declare interface JsonApiIdentityProviderInAttributes {
47992
48145
  /**
47993
48146
  * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
47994
48147
  */
@@ -47999,10 +48152,18 @@ export declare interface JsonApiIdentityProviderOutAttributes {
47999
48152
  customClaimMapping?: {
48000
48153
  [key: string]: string;
48001
48154
  };
48155
+ /**
48156
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
48157
+ */
48158
+ samlMetadata?: string;
48002
48159
  /**
48003
48160
  * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
48004
48161
  */
48005
48162
  oauthClientId?: string;
48163
+ /**
48164
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
48165
+ */
48166
+ oauthClientSecret?: string;
48006
48167
  /**
48007
48168
  * The location of your OIDC provider. This field is mandatory for OIDC IdP.
48008
48169
  */
@@ -48028,73 +48189,58 @@ export declare interface JsonApiIdentityProviderOutAttributes {
48028
48189
  /**
48029
48190
  * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
48030
48191
  */
48031
- idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
48192
+ idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
48032
48193
  }
48033
48194
 
48034
- export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
48195
+ export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
48035
48196
  readonly MANAGED_IDP: "MANAGED_IDP";
48036
48197
  readonly FIM_IDP: "FIM_IDP";
48037
48198
  readonly DEX_IDP: "DEX_IDP";
48038
48199
  readonly CUSTOM_IDP: "CUSTOM_IDP";
48039
48200
  };
48040
48201
 
48041
- export declare type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
48202
+ export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
48042
48203
 
48043
- export declare interface JsonApiIdentityProviderOutDocument {
48044
- data: JsonApiIdentityProviderOut;
48045
- links?: ObjectLinks;
48046
- }
48047
-
48048
- /**
48049
- * A JSON:API document with a list of resources
48050
- */
48051
- export declare interface JsonApiIdentityProviderOutList {
48052
- data: Array<JsonApiIdentityProviderOutWithLinks>;
48053
- links?: ListLinks;
48054
- meta?: JsonApiAggregatedFactOutListMeta;
48204
+ export declare interface JsonApiIdentityProviderInDocument {
48205
+ data: JsonApiIdentityProviderIn;
48055
48206
  }
48056
48207
 
48057
- export declare const JsonApiIdentityProviderOutTypeEnum: {
48208
+ export declare const JsonApiIdentityProviderInTypeEnum: {
48058
48209
  readonly IDENTITY_PROVIDER: "identityProvider";
48059
48210
  };
48060
48211
 
48061
- export declare type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
48212
+ export declare type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
48062
48213
 
48063
- export declare interface JsonApiIdentityProviderOutWithLinks {
48064
- /**
48065
- * Object type
48066
- */
48067
- type: JsonApiIdentityProviderOutWithLinksTypeEnum;
48068
- /**
48069
- * API identifier of an object
48070
- */
48214
+ /**
48215
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
48216
+ */
48217
+ export declare interface JsonApiIdentityProviderLinkage {
48071
48218
  id: string;
48072
- attributes?: JsonApiIdentityProviderOutAttributes;
48073
- links?: ObjectLinks;
48219
+ type: JsonApiIdentityProviderLinkageTypeEnum;
48074
48220
  }
48075
48221
 
48076
- export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
48222
+ export declare const JsonApiIdentityProviderLinkageTypeEnum: {
48077
48223
  readonly IDENTITY_PROVIDER: "identityProvider";
48078
48224
  };
48079
48225
 
48080
- export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
48226
+ export declare type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
48081
48227
 
48082
48228
  /**
48083
- * JSON:API representation of patching identityProvider entity.
48229
+ * JSON:API representation of identityProvider entity.
48084
48230
  */
48085
- export declare interface JsonApiIdentityProviderPatch {
48231
+ export declare interface JsonApiIdentityProviderOut {
48086
48232
  /**
48087
48233
  * Object type
48088
48234
  */
48089
- type: JsonApiIdentityProviderPatchTypeEnum;
48235
+ type: JsonApiIdentityProviderOutTypeEnum;
48090
48236
  /**
48091
48237
  * API identifier of an object
48092
48238
  */
48093
48239
  id: string;
48094
- attributes?: JsonApiIdentityProviderPatchAttributes;
48240
+ attributes?: JsonApiIdentityProviderOutAttributes;
48095
48241
  }
48096
48242
 
48097
- export declare interface JsonApiIdentityProviderPatchAttributes {
48243
+ export declare interface JsonApiIdentityProviderOutAttributes {
48098
48244
  /**
48099
48245
  * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
48100
48246
  */
@@ -48105,18 +48251,10 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
48105
48251
  customClaimMapping?: {
48106
48252
  [key: string]: string;
48107
48253
  };
48108
- /**
48109
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
48110
- */
48111
- samlMetadata?: string;
48112
48254
  /**
48113
48255
  * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
48114
48256
  */
48115
48257
  oauthClientId?: string;
48116
- /**
48117
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
48118
- */
48119
- oauthClientSecret?: string;
48120
48258
  /**
48121
48259
  * The location of your OIDC provider. This field is mandatory for OIDC IdP.
48122
48260
  */
@@ -48142,17 +48280,71 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
48142
48280
  /**
48143
48281
  * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
48144
48282
  */
48145
- idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
48283
+ idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
48146
48284
  }
48147
48285
 
48148
- export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
48286
+ export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
48149
48287
  readonly MANAGED_IDP: "MANAGED_IDP";
48150
48288
  readonly FIM_IDP: "FIM_IDP";
48151
48289
  readonly DEX_IDP: "DEX_IDP";
48152
48290
  readonly CUSTOM_IDP: "CUSTOM_IDP";
48153
48291
  };
48154
48292
 
48155
- export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
48293
+ export declare type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
48294
+
48295
+ export declare interface JsonApiIdentityProviderOutDocument {
48296
+ data: JsonApiIdentityProviderOut;
48297
+ links?: ObjectLinks;
48298
+ }
48299
+
48300
+ /**
48301
+ * A JSON:API document with a list of resources
48302
+ */
48303
+ export declare interface JsonApiIdentityProviderOutList {
48304
+ data: Array<JsonApiIdentityProviderOutWithLinks>;
48305
+ links?: ListLinks;
48306
+ meta?: JsonApiColorPaletteOutListMeta;
48307
+ }
48308
+
48309
+ export declare const JsonApiIdentityProviderOutTypeEnum: {
48310
+ readonly IDENTITY_PROVIDER: "identityProvider";
48311
+ };
48312
+
48313
+ export declare type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
48314
+
48315
+ export declare interface JsonApiIdentityProviderOutWithLinks {
48316
+ /**
48317
+ * Object type
48318
+ */
48319
+ type: JsonApiIdentityProviderOutWithLinksTypeEnum;
48320
+ /**
48321
+ * API identifier of an object
48322
+ */
48323
+ id: string;
48324
+ attributes?: JsonApiIdentityProviderOutAttributes;
48325
+ links?: ObjectLinks;
48326
+ }
48327
+
48328
+ export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
48329
+ readonly IDENTITY_PROVIDER: "identityProvider";
48330
+ };
48331
+
48332
+ export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
48333
+
48334
+ /**
48335
+ * JSON:API representation of patching identityProvider entity.
48336
+ */
48337
+ export declare interface JsonApiIdentityProviderPatch {
48338
+ /**
48339
+ * Object type
48340
+ */
48341
+ type: JsonApiIdentityProviderPatchTypeEnum;
48342
+ /**
48343
+ * API identifier of an object
48344
+ */
48345
+ id: string;
48346
+ attributes?: JsonApiIdentityProviderInAttributes;
48347
+ }
48156
48348
 
48157
48349
  export declare interface JsonApiIdentityProviderPatchDocument {
48158
48350
  data: JsonApiIdentityProviderPatch;
@@ -48176,7 +48368,7 @@ export declare interface JsonApiJwkIn {
48176
48368
  * API identifier of an object
48177
48369
  */
48178
48370
  id: string;
48179
- attributes?: JsonApiJwkPatchAttributes;
48371
+ attributes?: JsonApiJwkOutAttributes;
48180
48372
  }
48181
48373
 
48182
48374
  export declare interface JsonApiJwkInDocument {
@@ -48201,7 +48393,11 @@ export declare interface JsonApiJwkOut {
48201
48393
  * API identifier of an object
48202
48394
  */
48203
48395
  id: string;
48204
- attributes?: JsonApiJwkPatchAttributes;
48396
+ attributes?: JsonApiJwkOutAttributes;
48397
+ }
48398
+
48399
+ export declare interface JsonApiJwkOutAttributes {
48400
+ content?: RsaSpecification;
48205
48401
  }
48206
48402
 
48207
48403
  export declare interface JsonApiJwkOutDocument {
@@ -48215,7 +48411,7 @@ export declare interface JsonApiJwkOutDocument {
48215
48411
  export declare interface JsonApiJwkOutList {
48216
48412
  data: Array<JsonApiJwkOutWithLinks>;
48217
48413
  links?: ListLinks;
48218
- meta?: JsonApiAggregatedFactOutListMeta;
48414
+ meta?: JsonApiColorPaletteOutListMeta;
48219
48415
  }
48220
48416
 
48221
48417
  export declare const JsonApiJwkOutTypeEnum: {
@@ -48233,7 +48429,7 @@ export declare interface JsonApiJwkOutWithLinks {
48233
48429
  * API identifier of an object
48234
48430
  */
48235
48431
  id: string;
48236
- attributes?: JsonApiJwkPatchAttributes;
48432
+ attributes?: JsonApiJwkOutAttributes;
48237
48433
  links?: ObjectLinks;
48238
48434
  }
48239
48435
 
@@ -48255,11 +48451,7 @@ export declare interface JsonApiJwkPatch {
48255
48451
  * API identifier of an object
48256
48452
  */
48257
48453
  id: string;
48258
- attributes?: JsonApiJwkPatchAttributes;
48259
- }
48260
-
48261
- export declare interface JsonApiJwkPatchAttributes {
48262
- content?: RsaSpecification;
48454
+ attributes?: JsonApiJwkOutAttributes;
48263
48455
  }
48264
48456
 
48265
48457
  export declare interface JsonApiJwkPatchDocument {
@@ -48298,7 +48490,7 @@ export declare interface JsonApiLabelOut {
48298
48490
  * API identifier of an object
48299
48491
  */
48300
48492
  id: string;
48301
- meta?: JsonApiDatasetOutMeta;
48493
+ meta?: JsonApiVisualizationObjectOutMeta;
48302
48494
  attributes?: JsonApiLabelOutAttributes;
48303
48495
  relationships?: JsonApiLabelOutRelationships;
48304
48496
  }
@@ -48353,7 +48545,7 @@ export declare interface JsonApiLabelOutDocument {
48353
48545
  export declare interface JsonApiLabelOutList {
48354
48546
  data: Array<JsonApiLabelOutWithLinks>;
48355
48547
  links?: ListLinks;
48356
- meta?: JsonApiAggregatedFactOutListMeta;
48548
+ meta?: JsonApiColorPaletteOutListMeta;
48357
48549
  /**
48358
48550
  * Included resources
48359
48551
  */
@@ -48383,7 +48575,7 @@ export declare interface JsonApiLabelOutWithLinks {
48383
48575
  * API identifier of an object
48384
48576
  */
48385
48577
  id: string;
48386
- meta?: JsonApiDatasetOutMeta;
48578
+ meta?: JsonApiVisualizationObjectOutMeta;
48387
48579
  attributes?: JsonApiLabelOutAttributes;
48388
48580
  relationships?: JsonApiLabelOutRelationships;
48389
48581
  links?: ObjectLinks;
@@ -48510,7 +48702,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
48510
48702
  export declare interface JsonApiLlmEndpointOutList {
48511
48703
  data: Array<JsonApiLlmEndpointOutWithLinks>;
48512
48704
  links?: ListLinks;
48513
- meta?: JsonApiAggregatedFactOutListMeta;
48705
+ meta?: JsonApiColorPaletteOutListMeta;
48514
48706
  }
48515
48707
 
48516
48708
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -48609,7 +48801,16 @@ export declare interface JsonApiMetricIn {
48609
48801
  * API identifier of an object
48610
48802
  */
48611
48803
  id: string;
48612
- attributes: JsonApiMetricPostOptionalIdAttributes;
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;
48613
48814
  }
48614
48815
 
48615
48816
  export declare interface JsonApiMetricInDocument {
@@ -48648,7 +48849,7 @@ export declare interface JsonApiMetricOut {
48648
48849
  * API identifier of an object
48649
48850
  */
48650
48851
  id: string;
48651
- meta?: JsonApiDatasetOutMeta;
48852
+ meta?: JsonApiVisualizationObjectOutMeta;
48652
48853
  attributes: JsonApiMetricOutAttributes;
48653
48854
  relationships?: JsonApiVisualizationObjectOutRelationships;
48654
48855
  }
@@ -48689,7 +48890,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
48689
48890
  export declare interface JsonApiMetricOutList {
48690
48891
  data: Array<JsonApiMetricOutWithLinks>;
48691
48892
  links?: ListLinks;
48692
- meta?: JsonApiAggregatedFactOutListMeta;
48893
+ meta?: JsonApiColorPaletteOutListMeta;
48693
48894
  /**
48694
48895
  * Included resources
48695
48896
  */
@@ -48711,7 +48912,7 @@ export declare interface JsonApiMetricOutWithLinks {
48711
48912
  * API identifier of an object
48712
48913
  */
48713
48914
  id: string;
48714
- meta?: JsonApiDatasetOutMeta;
48915
+ meta?: JsonApiVisualizationObjectOutMeta;
48715
48916
  attributes: JsonApiMetricOutAttributes;
48716
48917
  relationships?: JsonApiVisualizationObjectOutRelationships;
48717
48918
  links?: ObjectLinks;
@@ -48769,16 +48970,7 @@ export declare interface JsonApiMetricPostOptionalId {
48769
48970
  * API identifier of an object
48770
48971
  */
48771
48972
  id?: string;
48772
- attributes: JsonApiMetricPostOptionalIdAttributes;
48773
- }
48774
-
48775
- export declare interface JsonApiMetricPostOptionalIdAttributes {
48776
- title?: string;
48777
- description?: string;
48778
- tags?: Array<string>;
48779
- areRelationsValid?: boolean;
48780
- content: JsonApiMetricOutAttributesContent;
48781
- isHidden?: boolean;
48973
+ attributes: JsonApiMetricInAttributes;
48782
48974
  }
48783
48975
 
48784
48976
  export declare interface JsonApiMetricPostOptionalIdDocument {
@@ -48844,7 +49036,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
48844
49036
  export declare interface JsonApiNotificationChannelIdentifierOutList {
48845
49037
  data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
48846
49038
  links?: ListLinks;
48847
- meta?: JsonApiAggregatedFactOutListMeta;
49039
+ meta?: JsonApiColorPaletteOutListMeta;
48848
49040
  }
48849
49041
 
48850
49042
  export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
@@ -48884,7 +49076,7 @@ export declare interface JsonApiNotificationChannelIn {
48884
49076
  * API identifier of an object
48885
49077
  */
48886
49078
  id: string;
48887
- attributes?: JsonApiNotificationChannelPatchAttributes;
49079
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
48888
49080
  }
48889
49081
 
48890
49082
  export declare interface JsonApiNotificationChannelInDocument {
@@ -49002,7 +49194,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
49002
49194
  export declare interface JsonApiNotificationChannelOutList {
49003
49195
  data: Array<JsonApiNotificationChannelOutWithLinks>;
49004
49196
  links?: ListLinks;
49005
- meta?: JsonApiAggregatedFactOutListMeta;
49197
+ meta?: JsonApiColorPaletteOutListMeta;
49006
49198
  }
49007
49199
 
49008
49200
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -49042,10 +49234,35 @@ export declare interface JsonApiNotificationChannelPatch {
49042
49234
  * API identifier of an object
49043
49235
  */
49044
49236
  id: string;
49045
- attributes?: JsonApiNotificationChannelPatchAttributes;
49237
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49046
49238
  }
49047
49239
 
49048
- export declare interface JsonApiNotificationChannelPatchAttributes {
49240
+ export declare interface JsonApiNotificationChannelPatchDocument {
49241
+ data: JsonApiNotificationChannelPatch;
49242
+ }
49243
+
49244
+ export declare const JsonApiNotificationChannelPatchTypeEnum: {
49245
+ readonly NOTIFICATION_CHANNEL: "notificationChannel";
49246
+ };
49247
+
49248
+ export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
49249
+
49250
+ /**
49251
+ * JSON:API representation of notificationChannel entity.
49252
+ */
49253
+ export declare interface JsonApiNotificationChannelPostOptionalId {
49254
+ /**
49255
+ * Object type
49256
+ */
49257
+ type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
49258
+ /**
49259
+ * API identifier of an object
49260
+ */
49261
+ id?: string;
49262
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49263
+ }
49264
+
49265
+ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
49049
49266
  name?: string | null;
49050
49267
  description?: string | null;
49051
49268
  destination?: JsonApiNotificationChannelOutAttributesDestination;
@@ -49056,7 +49273,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
49056
49273
  /**
49057
49274
  * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
49058
49275
  */
49059
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
49276
+ dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
49060
49277
  /**
49061
49278
  * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
49062
49279
  */
@@ -49064,60 +49281,35 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
49064
49281
  /**
49065
49282
  * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
49066
49283
  */
49067
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
49284
+ allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
49068
49285
  /**
49069
49286
  * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
49070
49287
  */
49071
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
49288
+ inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
49072
49289
  }
49073
49290
 
49074
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
49291
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
49075
49292
  readonly CREATOR: "CREATOR";
49076
49293
  readonly INTERNAL: "INTERNAL";
49077
49294
  readonly EXTERNAL: "EXTERNAL";
49078
49295
  };
49079
49296
 
49080
- export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
49297
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
49081
49298
 
49082
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
49299
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
49083
49300
  readonly HIDDEN: "HIDDEN";
49084
49301
  readonly INTERNAL_ONLY: "INTERNAL_ONLY";
49085
49302
  readonly ALL: "ALL";
49086
49303
  };
49087
49304
 
49088
- export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
49305
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
49089
49306
 
49090
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
49307
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
49091
49308
  readonly DISABLED: "DISABLED";
49092
49309
  readonly ENABLED: "ENABLED";
49093
49310
  };
49094
49311
 
49095
- export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
49096
-
49097
- export declare interface JsonApiNotificationChannelPatchDocument {
49098
- data: JsonApiNotificationChannelPatch;
49099
- }
49100
-
49101
- export declare const JsonApiNotificationChannelPatchTypeEnum: {
49102
- readonly NOTIFICATION_CHANNEL: "notificationChannel";
49103
- };
49104
-
49105
- export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
49106
-
49107
- /**
49108
- * JSON:API representation of notificationChannel entity.
49109
- */
49110
- export declare interface JsonApiNotificationChannelPostOptionalId {
49111
- /**
49112
- * Object type
49113
- */
49114
- type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
49115
- /**
49116
- * API identifier of an object
49117
- */
49118
- id?: string;
49119
- attributes?: JsonApiNotificationChannelPatchAttributes;
49120
- }
49312
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
49121
49313
 
49122
49314
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
49123
49315
  data: JsonApiNotificationChannelPostOptionalId;
@@ -49141,54 +49333,14 @@ export declare interface JsonApiOrganizationIn {
49141
49333
  * API identifier of an object
49142
49334
  */
49143
49335
  id: string;
49144
- attributes?: JsonApiOrganizationInAttributes;
49145
- relationships?: JsonApiOrganizationInRelationships;
49146
- }
49147
-
49148
- export declare interface JsonApiOrganizationInAttributes {
49149
- name?: string | null;
49150
- hostname?: string;
49151
- allowedOrigins?: Array<string>;
49152
- oauthIssuerLocation?: string;
49153
- oauthClientId?: string;
49154
- oauthClientSecret?: string;
49155
- /**
49156
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
49157
- * @deprecated
49158
- */
49159
- earlyAccess?: string | null;
49160
- /**
49161
- * The early access feature identifiers. They are used to enable experimental features.
49162
- */
49163
- earlyAccessValues?: Array<string> | null;
49164
- /**
49165
- * 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.
49166
- */
49167
- oauthIssuerId?: string;
49168
- /**
49169
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
49170
- */
49171
- oauthSubjectIdClaim?: string;
49172
- /**
49173
- * 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.
49174
- */
49175
- oauthCustomAuthAttributes?: {
49176
- [key: string]: string;
49177
- };
49178
- /**
49179
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
49180
- */
49181
- oauthCustomScopes?: Array<string> | null;
49336
+ attributes?: JsonApiOrganizationPatchAttributes;
49337
+ relationships?: JsonApiOrganizationPatchRelationships;
49182
49338
  }
49183
49339
 
49184
49340
  export declare interface JsonApiOrganizationInDocument {
49185
49341
  data: JsonApiOrganizationIn;
49186
49342
  }
49187
49343
 
49188
- export declare interface JsonApiOrganizationInRelationships {
49189
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
49190
- }
49191
-
49192
49344
  export declare const JsonApiOrganizationInTypeEnum: {
49193
49345
  readonly ORGANIZATION: "organization";
49194
49346
  };
@@ -49216,8 +49368,6 @@ export declare interface JsonApiOrganizationOutAttributes {
49216
49368
  name?: string | null;
49217
49369
  hostname?: string;
49218
49370
  allowedOrigins?: Array<string>;
49219
- oauthIssuerLocation?: string;
49220
- oauthClientId?: string;
49221
49371
  /**
49222
49372
  * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
49223
49373
  * @deprecated
@@ -49227,25 +49377,7 @@ export declare interface JsonApiOrganizationOutAttributes {
49227
49377
  * The early access feature identifiers. They are used to enable experimental features.
49228
49378
  */
49229
49379
  earlyAccessValues?: Array<string> | null;
49230
- /**
49231
- * 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.
49232
- */
49233
- oauthIssuerId?: string;
49234
49380
  cacheSettings?: JsonApiOrganizationOutAttributesCacheSettings;
49235
- /**
49236
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
49237
- */
49238
- oauthSubjectIdClaim?: string;
49239
- /**
49240
- * 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.
49241
- */
49242
- oauthCustomAuthAttributes?: {
49243
- [key: string]: string;
49244
- };
49245
- /**
49246
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
49247
- */
49248
- oauthCustomScopes?: Array<string> | null;
49249
49381
  }
49250
49382
 
49251
49383
  export declare interface JsonApiOrganizationOutAttributesCacheSettings {
@@ -49291,7 +49423,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiO
49291
49423
  export declare interface JsonApiOrganizationOutRelationships {
49292
49424
  bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
49293
49425
  bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
49294
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
49426
+ identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
49295
49427
  }
49296
49428
 
49297
49429
  export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
@@ -49302,10 +49434,6 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
49302
49434
  data: JsonApiUserGroupLinkage | null;
49303
49435
  }
49304
49436
 
49305
- export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
49306
- data: JsonApiIdentityProviderLinkage | null;
49307
- }
49308
-
49309
49437
  export declare const JsonApiOrganizationOutTypeEnum: {
49310
49438
  readonly ORGANIZATION: "organization";
49311
49439
  };
@@ -49324,14 +49452,37 @@ export declare interface JsonApiOrganizationPatch {
49324
49452
  * API identifier of an object
49325
49453
  */
49326
49454
  id: string;
49327
- attributes?: JsonApiOrganizationInAttributes;
49328
- relationships?: JsonApiOrganizationInRelationships;
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;
49329
49472
  }
49330
49473
 
49331
49474
  export declare interface JsonApiOrganizationPatchDocument {
49332
49475
  data: JsonApiOrganizationPatch;
49333
49476
  }
49334
49477
 
49478
+ export declare interface JsonApiOrganizationPatchRelationships {
49479
+ identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
49480
+ }
49481
+
49482
+ export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
49483
+ data: JsonApiIdentityProviderLinkage | null;
49484
+ }
49485
+
49335
49486
  export declare const JsonApiOrganizationPatchTypeEnum: {
49336
49487
  readonly ORGANIZATION: "organization";
49337
49488
  };
@@ -49350,7 +49501,7 @@ export declare interface JsonApiOrganizationSettingIn {
49350
49501
  * API identifier of an object
49351
49502
  */
49352
49503
  id: string;
49353
- attributes?: JsonApiUserSettingOutAttributes;
49504
+ attributes?: JsonApiOrganizationSettingOutAttributes;
49354
49505
  }
49355
49506
 
49356
49507
  export declare interface JsonApiOrganizationSettingInDocument {
@@ -49375,9 +49526,54 @@ export declare interface JsonApiOrganizationSettingOut {
49375
49526
  * API identifier of an object
49376
49527
  */
49377
49528
  id: string;
49378
- attributes?: JsonApiUserSettingOutAttributes;
49529
+ attributes?: JsonApiOrganizationSettingOutAttributes;
49379
49530
  }
49380
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
+
49381
49577
  export declare interface JsonApiOrganizationSettingOutDocument {
49382
49578
  data: JsonApiOrganizationSettingOut;
49383
49579
  links?: ObjectLinks;
@@ -49389,7 +49585,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
49389
49585
  export declare interface JsonApiOrganizationSettingOutList {
49390
49586
  data: Array<JsonApiOrganizationSettingOutWithLinks>;
49391
49587
  links?: ListLinks;
49392
- meta?: JsonApiAggregatedFactOutListMeta;
49588
+ meta?: JsonApiColorPaletteOutListMeta;
49393
49589
  }
49394
49590
 
49395
49591
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -49407,7 +49603,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
49407
49603
  * API identifier of an object
49408
49604
  */
49409
49605
  id: string;
49410
- attributes?: JsonApiUserSettingOutAttributes;
49606
+ attributes?: JsonApiOrganizationSettingOutAttributes;
49411
49607
  links?: ObjectLinks;
49412
49608
  }
49413
49609
 
@@ -49429,7 +49625,7 @@ export declare interface JsonApiOrganizationSettingPatch {
49429
49625
  * API identifier of an object
49430
49626
  */
49431
49627
  id: string;
49432
- attributes?: JsonApiUserSettingOutAttributes;
49628
+ attributes?: JsonApiOrganizationSettingOutAttributes;
49433
49629
  }
49434
49630
 
49435
49631
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -49493,7 +49689,7 @@ export declare interface JsonApiThemeOutDocument {
49493
49689
  export declare interface JsonApiThemeOutList {
49494
49690
  data: Array<JsonApiThemeOutWithLinks>;
49495
49691
  links?: ListLinks;
49496
- meta?: JsonApiAggregatedFactOutListMeta;
49692
+ meta?: JsonApiColorPaletteOutListMeta;
49497
49693
  }
49498
49694
 
49499
49695
  export declare const JsonApiThemeOutTypeEnum: {
@@ -49584,7 +49780,7 @@ export declare interface JsonApiUserDataFilterOut {
49584
49780
  * API identifier of an object
49585
49781
  */
49586
49782
  id: string;
49587
- meta?: JsonApiDatasetOutMeta;
49783
+ meta?: JsonApiVisualizationObjectOutMeta;
49588
49784
  attributes: JsonApiUserDataFilterOutAttributes;
49589
49785
  relationships?: JsonApiUserDataFilterOutRelationships;
49590
49786
  }
@@ -49617,7 +49813,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
49617
49813
  export declare interface JsonApiUserDataFilterOutList {
49618
49814
  data: Array<JsonApiUserDataFilterOutWithLinks>;
49619
49815
  links?: ListLinks;
49620
- meta?: JsonApiAggregatedFactOutListMeta;
49816
+ meta?: JsonApiColorPaletteOutListMeta;
49621
49817
  /**
49622
49818
  * Included resources
49623
49819
  */
@@ -49627,11 +49823,11 @@ export declare interface JsonApiUserDataFilterOutList {
49627
49823
  export declare interface JsonApiUserDataFilterOutRelationships {
49628
49824
  user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
49629
49825
  userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
49630
- facts?: JsonApiDatasetOutRelationshipsFacts;
49631
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
49826
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
49827
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
49632
49828
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
49633
49829
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
49634
- datasets?: JsonApiDatasetOutRelationshipsReferences;
49830
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
49635
49831
  }
49636
49832
 
49637
49833
  export declare const JsonApiUserDataFilterOutTypeEnum: {
@@ -49649,7 +49845,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
49649
49845
  * API identifier of an object
49650
49846
  */
49651
49847
  id: string;
49652
- meta?: JsonApiDatasetOutMeta;
49848
+ meta?: JsonApiVisualizationObjectOutMeta;
49653
49849
  attributes: JsonApiUserDataFilterOutAttributes;
49654
49850
  relationships?: JsonApiUserDataFilterOutRelationships;
49655
49851
  links?: ObjectLinks;
@@ -49801,7 +49997,7 @@ export declare interface JsonApiUserGroupOutDocument {
49801
49997
  export declare interface JsonApiUserGroupOutList {
49802
49998
  data: Array<JsonApiUserGroupOutWithLinks>;
49803
49999
  links?: ListLinks;
49804
- meta?: JsonApiAggregatedFactOutListMeta;
50000
+ meta?: JsonApiColorPaletteOutListMeta;
49805
50001
  /**
49806
50002
  * Included resources
49807
50003
  */
@@ -49809,7 +50005,14 @@ export declare interface JsonApiUserGroupOutList {
49809
50005
  }
49810
50006
 
49811
50007
  export declare interface JsonApiUserGroupOutRelationships {
49812
- parents?: JsonApiUserOutRelationshipsUserGroups;
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>;
49813
50016
  }
49814
50017
 
49815
50018
  export declare const JsonApiUserGroupOutTypeEnum: {
@@ -49910,7 +50113,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
49910
50113
  export declare interface JsonApiUserIdentifierOutList {
49911
50114
  data: Array<JsonApiUserIdentifierOutWithLinks>;
49912
50115
  links?: ListLinks;
49913
- meta?: JsonApiAggregatedFactOutListMeta;
50116
+ meta?: JsonApiColorPaletteOutListMeta;
49914
50117
  }
49915
50118
 
49916
50119
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -50016,7 +50219,7 @@ export declare interface JsonApiUserOutDocument {
50016
50219
  export declare interface JsonApiUserOutList {
50017
50220
  data: Array<JsonApiUserOutWithLinks>;
50018
50221
  links?: ListLinks;
50019
- meta?: JsonApiAggregatedFactOutListMeta;
50222
+ meta?: JsonApiColorPaletteOutListMeta;
50020
50223
  /**
50021
50224
  * Included resources
50022
50225
  */
@@ -50024,14 +50227,7 @@ export declare interface JsonApiUserOutList {
50024
50227
  }
50025
50228
 
50026
50229
  export declare interface JsonApiUserOutRelationships {
50027
- userGroups?: JsonApiUserOutRelationshipsUserGroups;
50028
- }
50029
-
50030
- export declare interface JsonApiUserOutRelationshipsUserGroups {
50031
- /**
50032
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50033
- */
50034
- data: Array<JsonApiUserGroupLinkage>;
50230
+ userGroups?: JsonApiUserGroupOutRelationshipsParents;
50035
50231
  }
50036
50232
 
50037
50233
  export declare const JsonApiUserOutTypeEnum: {
@@ -50098,7 +50294,7 @@ export declare interface JsonApiUserSettingIn {
50098
50294
  * API identifier of an object
50099
50295
  */
50100
50296
  id: string;
50101
- attributes?: JsonApiUserSettingOutAttributes;
50297
+ attributes?: JsonApiOrganizationSettingOutAttributes;
50102
50298
  }
50103
50299
 
50104
50300
  export declare interface JsonApiUserSettingInDocument {
@@ -50123,54 +50319,9 @@ export declare interface JsonApiUserSettingOut {
50123
50319
  * API identifier of an object
50124
50320
  */
50125
50321
  id: string;
50126
- attributes?: JsonApiUserSettingOutAttributes;
50322
+ attributes?: JsonApiOrganizationSettingOutAttributes;
50127
50323
  }
50128
50324
 
50129
- export declare interface JsonApiUserSettingOutAttributes {
50130
- /**
50131
- * Free-form JSON content. Maximum supported length is 15000 characters.
50132
- */
50133
- content?: object;
50134
- type?: JsonApiUserSettingOutAttributesTypeEnum;
50135
- }
50136
-
50137
- export declare const JsonApiUserSettingOutAttributesTypeEnum: {
50138
- readonly TIMEZONE: "TIMEZONE";
50139
- readonly ACTIVE_THEME: "ACTIVE_THEME";
50140
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
50141
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
50142
- readonly WHITE_LABELING: "WHITE_LABELING";
50143
- readonly LOCALE: "LOCALE";
50144
- readonly METADATA_LOCALE: "METADATA_LOCALE";
50145
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
50146
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
50147
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
50148
- readonly WEEK_START: "WEEK_START";
50149
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
50150
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
50151
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
50152
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
50153
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
50154
- readonly ALERT: "ALERT";
50155
- readonly SEPARATORS: "SEPARATORS";
50156
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
50157
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
50158
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
50159
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
50160
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
50161
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
50162
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
50163
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
50164
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
50165
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
50166
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
50167
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
50168
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
50169
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
50170
- };
50171
-
50172
- export declare type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
50173
-
50174
50325
  export declare interface JsonApiUserSettingOutDocument {
50175
50326
  data: JsonApiUserSettingOut;
50176
50327
  links?: ObjectLinks;
@@ -50182,7 +50333,7 @@ export declare interface JsonApiUserSettingOutDocument {
50182
50333
  export declare interface JsonApiUserSettingOutList {
50183
50334
  data: Array<JsonApiUserSettingOutWithLinks>;
50184
50335
  links?: ListLinks;
50185
- meta?: JsonApiAggregatedFactOutListMeta;
50336
+ meta?: JsonApiColorPaletteOutListMeta;
50186
50337
  }
50187
50338
 
50188
50339
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -50200,7 +50351,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
50200
50351
  * API identifier of an object
50201
50352
  */
50202
50353
  id: string;
50203
- attributes?: JsonApiUserSettingOutAttributes;
50354
+ attributes?: JsonApiOrganizationSettingOutAttributes;
50204
50355
  links?: ObjectLinks;
50205
50356
  }
50206
50357
 
@@ -50222,7 +50373,19 @@ export declare interface JsonApiVisualizationObjectIn {
50222
50373
  * API identifier of an object
50223
50374
  */
50224
50375
  id: string;
50225
- attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
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;
50226
50389
  }
50227
50390
 
50228
50391
  export declare interface JsonApiVisualizationObjectInDocument {
@@ -50261,7 +50424,7 @@ export declare interface JsonApiVisualizationObjectOut {
50261
50424
  * API identifier of an object
50262
50425
  */
50263
50426
  id: string;
50264
- meta?: JsonApiDatasetOutMeta;
50427
+ meta?: JsonApiVisualizationObjectOutMeta;
50265
50428
  attributes: JsonApiVisualizationObjectOutAttributes;
50266
50429
  relationships?: JsonApiVisualizationObjectOutRelationships;
50267
50430
  }
@@ -50295,27 +50458,70 @@ export declare interface JsonApiVisualizationObjectOutDocument {
50295
50458
  export declare interface JsonApiVisualizationObjectOutList {
50296
50459
  data: Array<JsonApiVisualizationObjectOutWithLinks>;
50297
50460
  links?: ListLinks;
50298
- meta?: JsonApiAggregatedFactOutListMeta;
50461
+ meta?: JsonApiColorPaletteOutListMeta;
50299
50462
  /**
50300
50463
  * Included resources
50301
50464
  */
50302
50465
  included?: Array<JsonApiMetricOutIncludes>;
50303
50466
  }
50304
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
+
50305
50490
  export declare interface JsonApiVisualizationObjectOutRelationships {
50306
50491
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
50307
50492
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
50308
- facts?: JsonApiDatasetOutRelationshipsFacts;
50309
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
50493
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
50494
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
50310
50495
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
50311
50496
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
50312
- datasets?: JsonApiDatasetOutRelationshipsReferences;
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>;
50313
50505
  }
50314
50506
 
50315
50507
  export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
50316
50508
  data: JsonApiUserIdentifierLinkage | null;
50317
50509
  }
50318
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
+
50319
50525
  export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
50320
50526
  /**
50321
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.
@@ -50345,7 +50551,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
50345
50551
  * API identifier of an object
50346
50552
  */
50347
50553
  id: string;
50348
- meta?: JsonApiDatasetOutMeta;
50554
+ meta?: JsonApiVisualizationObjectOutMeta;
50349
50555
  attributes: JsonApiVisualizationObjectOutAttributes;
50350
50556
  relationships?: JsonApiVisualizationObjectOutRelationships;
50351
50557
  links?: ObjectLinks;
@@ -50406,19 +50612,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
50406
50612
  * API identifier of an object
50407
50613
  */
50408
50614
  id?: string;
50409
- attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
50410
- }
50411
-
50412
- export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
50413
- title?: string;
50414
- description?: string;
50415
- tags?: Array<string>;
50416
- areRelationsValid?: boolean;
50417
- /**
50418
- * Free-form JSON content. Maximum supported length is 250000 characters.
50419
- */
50420
- content: object;
50421
- isHidden?: boolean;
50615
+ attributes: JsonApiVisualizationObjectInAttributes;
50422
50616
  }
50423
50617
 
50424
50618
  export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
@@ -50458,7 +50652,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
50458
50652
  export declare interface JsonApiWorkspaceAutomationOutList {
50459
50653
  data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
50460
50654
  links?: ListLinks;
50461
- meta?: JsonApiAggregatedFactOutListMeta;
50655
+ meta?: JsonApiColorPaletteOutListMeta;
50462
50656
  /**
50463
50657
  * Included resources
50464
50658
  */
@@ -50466,13 +50660,13 @@ export declare interface JsonApiWorkspaceAutomationOutList {
50466
50660
  }
50467
50661
 
50468
50662
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
50469
- workspace?: JsonApiWorkspacePatchRelationshipsParent;
50470
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
50471
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50663
+ workspace?: JsonApiWorkspaceOutRelationshipsParent;
50664
+ notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
50665
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
50472
50666
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
50473
50667
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
50474
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
50475
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
50668
+ exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
50669
+ recipients?: JsonApiAutomationPatchRelationshipsRecipients;
50476
50670
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
50477
50671
  }
50478
50672
 
@@ -50554,7 +50748,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
50554
50748
  * API identifier of an object
50555
50749
  */
50556
50750
  id: string;
50557
- meta?: JsonApiDatasetOutMeta;
50751
+ meta?: JsonApiVisualizationObjectOutMeta;
50558
50752
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
50559
50753
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
50560
50754
  }
@@ -50580,7 +50774,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
50580
50774
  export declare interface JsonApiWorkspaceDataFilterOutList {
50581
50775
  data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
50582
50776
  links?: ListLinks;
50583
- meta?: JsonApiAggregatedFactOutListMeta;
50777
+ meta?: JsonApiColorPaletteOutListMeta;
50584
50778
  /**
50585
50779
  * Included resources
50586
50780
  */
@@ -50613,7 +50807,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
50613
50807
  * API identifier of an object
50614
50808
  */
50615
50809
  id: string;
50616
- meta?: JsonApiDatasetOutMeta;
50810
+ meta?: JsonApiVisualizationObjectOutMeta;
50617
50811
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
50618
50812
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
50619
50813
  links?: ObjectLinks;
@@ -50663,8 +50857,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
50663
50857
  * API identifier of an object
50664
50858
  */
50665
50859
  id: string;
50666
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
50667
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
50860
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
50861
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
50668
50862
  }
50669
50863
 
50670
50864
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
@@ -50703,15 +50897,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
50703
50897
  * API identifier of an object
50704
50898
  */
50705
50899
  id: string;
50706
- meta?: JsonApiDatasetOutMeta;
50707
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
50708
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
50709
- }
50710
-
50711
- export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
50712
- title?: string;
50713
- description?: string;
50714
- filterValues?: Array<string>;
50900
+ meta?: JsonApiVisualizationObjectOutMeta;
50901
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
50902
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
50715
50903
  }
50716
50904
 
50717
50905
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -50729,21 +50917,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
50729
50917
  export declare interface JsonApiWorkspaceDataFilterSettingOutList {
50730
50918
  data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
50731
50919
  links?: ListLinks;
50732
- meta?: JsonApiAggregatedFactOutListMeta;
50920
+ meta?: JsonApiColorPaletteOutListMeta;
50733
50921
  /**
50734
50922
  * Included resources
50735
50923
  */
50736
50924
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
50737
50925
  }
50738
50926
 
50739
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
50740
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
50741
- }
50742
-
50743
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
50744
- data: JsonApiWorkspaceDataFilterLinkage | null;
50745
- }
50746
-
50747
50927
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
50748
50928
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
50749
50929
  };
@@ -50759,9 +50939,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
50759
50939
  * API identifier of an object
50760
50940
  */
50761
50941
  id: string;
50762
- meta?: JsonApiDatasetOutMeta;
50763
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
50764
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
50942
+ meta?: JsonApiVisualizationObjectOutMeta;
50943
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
50944
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
50765
50945
  links?: ObjectLinks;
50766
50946
  }
50767
50947
 
@@ -50783,14 +50963,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
50783
50963
  * API identifier of an object
50784
50964
  */
50785
50965
  id: string;
50786
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
50787
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
50966
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
50967
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
50968
+ }
50969
+
50970
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
50971
+ title?: string;
50972
+ description?: string;
50973
+ filterValues?: Array<string>;
50788
50974
  }
50789
50975
 
50790
50976
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
50791
50977
  data: JsonApiWorkspaceDataFilterSettingPatch;
50792
50978
  }
50793
50979
 
50980
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
50981
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
50982
+ }
50983
+
50984
+ export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
50985
+ data: JsonApiWorkspaceDataFilterLinkage | null;
50986
+ }
50987
+
50794
50988
  export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
50795
50989
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
50796
50990
  };
@@ -50809,8 +51003,8 @@ export declare interface JsonApiWorkspaceIn {
50809
51003
  * API identifier of an object
50810
51004
  */
50811
51005
  id: string;
50812
- attributes?: JsonApiWorkspacePatchAttributes;
50813
- relationships?: JsonApiWorkspacePatchRelationships;
51006
+ attributes?: JsonApiWorkspaceOutAttributes;
51007
+ relationships?: JsonApiWorkspaceOutRelationships;
50814
51008
  }
50815
51009
 
50816
51010
  export declare interface JsonApiWorkspaceInDocument {
@@ -50850,8 +51044,42 @@ export declare interface JsonApiWorkspaceOut {
50850
51044
  */
50851
51045
  id: string;
50852
51046
  meta?: JsonApiWorkspaceOutMeta;
50853
- attributes?: JsonApiWorkspacePatchAttributes;
50854
- relationships?: JsonApiWorkspacePatchRelationships;
51047
+ attributes?: JsonApiWorkspaceOutAttributes;
51048
+ relationships?: JsonApiWorkspaceOutRelationships;
51049
+ }
51050
+
51051
+ export declare interface JsonApiWorkspaceOutAttributes {
51052
+ name?: string | null;
51053
+ /**
51054
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51055
+ * @deprecated
51056
+ */
51057
+ earlyAccess?: string | null;
51058
+ /**
51059
+ * The early access feature identifiers. They are used to enable experimental features.
51060
+ */
51061
+ earlyAccessValues?: Array<string> | null;
51062
+ description?: string | null;
51063
+ /**
51064
+ * Custom prefix of entity identifiers in workspace
51065
+ */
51066
+ prefix?: string | null;
51067
+ cacheExtraLimit?: number;
51068
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
51069
+ }
51070
+
51071
+ /**
51072
+ * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
51073
+ */
51074
+ export declare interface JsonApiWorkspaceOutAttributesDataSource {
51075
+ /**
51076
+ * The ID of the used data source.
51077
+ */
51078
+ id: string;
51079
+ /**
51080
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
51081
+ */
51082
+ schemaPath?: Array<string>;
50855
51083
  }
50856
51084
 
50857
51085
  export declare interface JsonApiWorkspaceOutDocument {
@@ -50869,7 +51097,7 @@ export declare interface JsonApiWorkspaceOutDocument {
50869
51097
  export declare interface JsonApiWorkspaceOutList {
50870
51098
  data: Array<JsonApiWorkspaceOutWithLinks>;
50871
51099
  links?: ListLinks;
50872
- meta?: JsonApiAggregatedFactOutListMeta;
51100
+ meta?: JsonApiColorPaletteOutListMeta;
50873
51101
  /**
50874
51102
  * Included resources
50875
51103
  */
@@ -50929,6 +51157,14 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
50929
51157
 
50930
51158
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
50931
51159
 
51160
+ export declare interface JsonApiWorkspaceOutRelationships {
51161
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
51162
+ }
51163
+
51164
+ export declare interface JsonApiWorkspaceOutRelationshipsParent {
51165
+ data: JsonApiWorkspaceLinkage | null;
51166
+ }
51167
+
50932
51168
  export declare const JsonApiWorkspaceOutTypeEnum: {
50933
51169
  readonly WORKSPACE: "workspace";
50934
51170
  };
@@ -50945,8 +51181,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
50945
51181
  */
50946
51182
  id: string;
50947
51183
  meta?: JsonApiWorkspaceOutMeta;
50948
- attributes?: JsonApiWorkspacePatchAttributes;
50949
- relationships?: JsonApiWorkspacePatchRelationships;
51184
+ attributes?: JsonApiWorkspaceOutAttributes;
51185
+ relationships?: JsonApiWorkspaceOutRelationships;
50950
51186
  links?: ObjectLinks;
50951
51187
  }
50952
51188
 
@@ -50968,56 +51204,14 @@ export declare interface JsonApiWorkspacePatch {
50968
51204
  * API identifier of an object
50969
51205
  */
50970
51206
  id: string;
50971
- attributes?: JsonApiWorkspacePatchAttributes;
50972
- relationships?: JsonApiWorkspacePatchRelationships;
50973
- }
50974
-
50975
- export declare interface JsonApiWorkspacePatchAttributes {
50976
- name?: string | null;
50977
- /**
50978
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
50979
- * @deprecated
50980
- */
50981
- earlyAccess?: string | null;
50982
- /**
50983
- * The early access feature identifiers. They are used to enable experimental features.
50984
- */
50985
- earlyAccessValues?: Array<string> | null;
50986
- description?: string | null;
50987
- /**
50988
- * Custom prefix of entity identifiers in workspace
50989
- */
50990
- prefix?: string | null;
50991
- cacheExtraLimit?: number;
50992
- dataSource?: JsonApiWorkspacePatchAttributesDataSource;
50993
- }
50994
-
50995
- /**
50996
- * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
50997
- */
50998
- export declare interface JsonApiWorkspacePatchAttributesDataSource {
50999
- /**
51000
- * The ID of the used data source.
51001
- */
51002
- id: string;
51003
- /**
51004
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
51005
- */
51006
- schemaPath?: Array<string>;
51207
+ attributes?: JsonApiWorkspaceOutAttributes;
51208
+ relationships?: JsonApiWorkspaceOutRelationships;
51007
51209
  }
51008
51210
 
51009
51211
  export declare interface JsonApiWorkspacePatchDocument {
51010
51212
  data: JsonApiWorkspacePatch;
51011
51213
  }
51012
51214
 
51013
- export declare interface JsonApiWorkspacePatchRelationships {
51014
- parent?: JsonApiWorkspacePatchRelationshipsParent;
51015
- }
51016
-
51017
- export declare interface JsonApiWorkspacePatchRelationshipsParent {
51018
- data: JsonApiWorkspaceLinkage | null;
51019
- }
51020
-
51021
51215
  export declare const JsonApiWorkspacePatchTypeEnum: {
51022
51216
  readonly WORKSPACE: "workspace";
51023
51217
  };
@@ -51036,7 +51230,7 @@ export declare interface JsonApiWorkspaceSettingIn {
51036
51230
  * API identifier of an object
51037
51231
  */
51038
51232
  id: string;
51039
- attributes?: JsonApiUserSettingOutAttributes;
51233
+ attributes?: JsonApiOrganizationSettingOutAttributes;
51040
51234
  }
51041
51235
 
51042
51236
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -51061,8 +51255,8 @@ export declare interface JsonApiWorkspaceSettingOut {
51061
51255
  * API identifier of an object
51062
51256
  */
51063
51257
  id: string;
51064
- meta?: JsonApiDatasetOutMeta;
51065
- attributes?: JsonApiUserSettingOutAttributes;
51258
+ meta?: JsonApiVisualizationObjectOutMeta;
51259
+ attributes?: JsonApiOrganizationSettingOutAttributes;
51066
51260
  }
51067
51261
 
51068
51262
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -51076,7 +51270,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
51076
51270
  export declare interface JsonApiWorkspaceSettingOutList {
51077
51271
  data: Array<JsonApiWorkspaceSettingOutWithLinks>;
51078
51272
  links?: ListLinks;
51079
- meta?: JsonApiAggregatedFactOutListMeta;
51273
+ meta?: JsonApiColorPaletteOutListMeta;
51080
51274
  }
51081
51275
 
51082
51276
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -51094,8 +51288,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
51094
51288
  * API identifier of an object
51095
51289
  */
51096
51290
  id: string;
51097
- meta?: JsonApiDatasetOutMeta;
51098
- attributes?: JsonApiUserSettingOutAttributes;
51291
+ meta?: JsonApiVisualizationObjectOutMeta;
51292
+ attributes?: JsonApiOrganizationSettingOutAttributes;
51099
51293
  links?: ObjectLinks;
51100
51294
  }
51101
51295
 
@@ -51117,7 +51311,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
51117
51311
  * API identifier of an object
51118
51312
  */
51119
51313
  id: string;
51120
- attributes?: JsonApiUserSettingOutAttributes;
51314
+ attributes?: JsonApiOrganizationSettingOutAttributes;
51121
51315
  }
51122
51316
 
51123
51317
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -51142,7 +51336,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
51142
51336
  * API identifier of an object
51143
51337
  */
51144
51338
  id?: string;
51145
- attributes?: JsonApiUserSettingOutAttributes;
51339
+ attributes?: JsonApiOrganizationSettingOutAttributes;
51146
51340
  }
51147
51341
 
51148
51342
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -56453,7 +56647,7 @@ export declare const NoteAppliesToEnum: {
56453
56647
  export declare type NoteAppliesToEnum = (typeof NoteAppliesToEnum)[keyof typeof NoteAppliesToEnum];
56454
56648
 
56455
56649
  export declare interface Notes {
56456
- note: Array<Note>;
56650
+ note?: Array<Note>;
56457
56651
  }
56458
56652
 
56459
56653
  /**
@@ -57601,41 +57795,6 @@ export declare interface NotificationChannelsAutomationTestNotificationChannelRe
57601
57795
  readonly automationTestDestinationRequest: AutomationTestDestinationRequest;
57602
57796
  }
57603
57797
 
57604
- /**
57605
- * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
57606
- */
57607
- declare interface ObjectIdentifier {
57608
- type: ObjectIdentifierTypeEnum;
57609
- space: string;
57610
- id: string;
57611
- }
57612
-
57613
- declare const ObjectIdentifierTypeEnum: {
57614
- readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
57615
- readonly ATTRIBUTE: "attribute";
57616
- readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
57617
- readonly DASHBOARD_PLUGIN: "dashboardPlugin";
57618
- readonly DATASET: "dataset";
57619
- readonly FACT: "fact";
57620
- readonly AGGREGATED_FACT: "aggregatedFact";
57621
- readonly LABEL: "label";
57622
- readonly METRIC: "metric";
57623
- readonly USER_DATA_FILTER: "userDataFilter";
57624
- readonly EXPORT_DEFINITION: "exportDefinition";
57625
- readonly AUTOMATION: "automation";
57626
- readonly AUTOMATION_RESULT: "automationResult";
57627
- readonly PROMPT: "prompt";
57628
- readonly VISUALIZATION_OBJECT: "visualizationObject";
57629
- readonly FILTER_CONTEXT: "filterContext";
57630
- readonly WORKSPACE_SETTINGS: "workspaceSettings";
57631
- readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
57632
- readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
57633
- readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
57634
- readonly FILTER_VIEW: "filterView";
57635
- };
57636
-
57637
- declare type ObjectIdentifierTypeEnum = (typeof ObjectIdentifierTypeEnum)[keyof typeof ObjectIdentifierTypeEnum];
57638
-
57639
57798
  export declare interface ObjectLinks {
57640
57799
  /**
57641
57800
  * A string containing the link\'s URL.
@@ -67241,19 +67400,12 @@ export declare interface ProfileApiInterface {
67241
67400
  getCurrentWithDetails: () => Promise<IUserProfile>;
67242
67401
  }
67243
67402
 
67244
- declare interface QualityIssue {
67245
- objects: Array<QualityIssueObject>;
67246
- severity: string;
67247
- code: string;
67248
- detail: {
67249
- [key: string]: object;
67250
- };
67251
- }
67403
+ declare const QualityIssueSeverityEnum: {
67404
+ readonly ERROR: "error";
67405
+ readonly WARNING: "warning";
67406
+ };
67252
67407
 
67253
- declare interface QualityIssueObject {
67254
- type: string;
67255
- id: string;
67256
- }
67408
+ declare type QualityIssueSeverityEnum = (typeof QualityIssueSeverityEnum)[keyof typeof QualityIssueSeverityEnum];
67257
67409
 
67258
67410
  declare interface Range_2 {
67259
67411
  operator: RangeOperatorEnum;
@@ -69726,20 +69878,20 @@ export declare const tigerEntitiesObjectsClientFactory: (axios: AxiosInstance) =
69726
69878
  /**
69727
69879
  * Tiger execution client factory
69728
69880
  */
69729
- export declare const tigerExecutionClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeReport">;
69881
+ export declare const tigerExecutionClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeReport" | "changeAnalysis">;
69730
69882
 
69731
69883
  /**
69732
69884
  * Tiger execution result client factory
69733
69885
  *
69734
69886
  */
69735
- export declare const tigerExecutionResultClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "retrieveResult">;
69887
+ export declare const tigerExecutionResultClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "retrieveResult" | "changeAnalysisResult">;
69736
69888
 
69737
69889
  export declare const tigerExportClientFactory: (axios: AxiosInstance) => ActionsExportInterface;
69738
69890
 
69739
69891
  /**
69740
69892
  * Tiger GenAI client factory
69741
69893
  */
69742
- 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">;
69743
69895
 
69744
69896
  export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
69745
69897
 
@@ -70109,6 +70261,14 @@ export declare interface TranslationsApiSetTranslationsRequest {
70109
70261
  readonly xliff: Xliff;
70110
70262
  }
70111
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
+
70112
70272
  /**
70113
70273
  * Information related to the file uploaded to the staging area.
70114
70274
  */
@@ -85794,7 +85954,7 @@ export declare interface WorkspaceUsers {
85794
85954
  }
85795
85955
 
85796
85956
  export declare interface Xliff {
85797
- file: Array<any>;
85957
+ file?: Array<any>;
85798
85958
  version?: string;
85799
85959
  srcLang?: string;
85800
85960
  trgLang?: string;