@gooddata/api-client-tiger 11.53.0-alpha.4 → 11.53.0-alpha.5

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.
@@ -11342,6 +11342,17 @@ export declare interface AiConversationListResponse {
11342
11342
  'meta': AiConversationListMeta;
11343
11343
  }
11344
11344
 
11345
+ /**
11346
+ * What a conversation exists to serve. USER is a person\'s own thread in the assistant. The others are utility modes, where the conversation serves something else and is kept out of the user\'s history: PREVIEW backs the Agent Builder preview pane, MCP backs a single-purpose MCP tool call.
11347
+ */
11348
+ export declare const AiConversationMode: {
11349
+ readonly USER: "USER";
11350
+ readonly PREVIEW: "PREVIEW";
11351
+ readonly MCP: "MCP";
11352
+ };
11353
+
11354
+ export declare type AiConversationMode = typeof AiConversationMode[keyof typeof AiConversationMode];
11355
+
11345
11356
  /**
11346
11357
  * Conversation returned by the agentic HTTP API.
11347
11358
  */
@@ -11356,13 +11367,18 @@ export declare interface AiConversationResponse {
11356
11367
  */
11357
11368
  'createdAt': string;
11358
11369
  /**
11359
- * Whether this is a preview conversation.
11370
+ * Deprecated, use `mode`. True only when `mode` is PREVIEW.
11371
+ * @deprecated
11360
11372
  */
11361
11373
  'isPreview'?: boolean;
11362
11374
  /**
11363
11375
  * Last activity timestamp (ISO-8601 UTC).
11364
11376
  */
11365
11377
  'lastActivityAt': string;
11378
+ /**
11379
+ * What this conversation serves. USER is the user\'s own thread; PREVIEW backs the Agent Builder preview pane; MCP backs a single-purpose MCP tool call. Anything other than USER is a utility conversation, kept out of the user\'s history.
11380
+ */
11381
+ 'mode'?: AiConversationMode;
11366
11382
  /**
11367
11383
  * Organization identifier.
11368
11384
  */
@@ -11418,6 +11434,7 @@ export declare interface AiConversationUpdateRequest {
11418
11434
  */
11419
11435
  export declare interface AiCreateConversationRequest {
11420
11436
  'agentId'?: string | null;
11437
+ 'mode'?: AiConversationMode | null;
11421
11438
  }
11422
11439
 
11423
11440
  /**
@@ -12609,6 +12626,7 @@ export declare interface AiSendMessageItem {
12609
12626
  export declare type AiSendMessageItemRoleEnum = 'user';
12610
12627
 
12611
12628
  export declare interface AiSendMessageOptions {
12629
+ 'pinnedSkills'?: Array<string> | null;
12612
12630
  'reasoningEffort'?: AiRequestedReasoningEffort | null;
12613
12631
  'search'?: AiSendMessageSearchOptions | null;
12614
12632
  }
@@ -20259,7 +20277,7 @@ export declare interface AutomationIdentifierRefIdentifier {
20259
20277
  'type': AutomationIdentifierRefIdentifierTypeEnum;
20260
20278
  }
20261
20279
 
20262
- export declare type AutomationIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
20280
+ export declare type AutomationIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'computedAttribute' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
20263
20281
 
20264
20282
  export declare interface AutomationImageExport {
20265
20283
  'requestPayload': ImageExportRequest;
@@ -24256,6 +24274,202 @@ export declare interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
24256
24274
  'treatNullValuesAs'?: number;
24257
24275
  }
24258
24276
 
24277
+ /**
24278
+ * Conditional formatting for a table, with one entry per formatted column.
24279
+ */
24280
+ export declare interface ConditionalFormatting {
24281
+ /**
24282
+ * Whether the rules are applied when rendering.
24283
+ */
24284
+ 'enabled': boolean;
24285
+ /**
24286
+ * Rules evaluated in order; within a target, the first matching condition wins.
24287
+ */
24288
+ 'rules': Array<ConditionalFormattingRule>;
24289
+ }
24290
+
24291
+ /**
24292
+ * A fixed, inclusive date period.
24293
+ */
24294
+ export declare interface ConditionalFormattingAbsoluteDateValue {
24295
+ /**
24296
+ * `YYYY-MM-DD`, or `YYYY-MM-DD HH:mm` at hour or minute granularity.
24297
+ */
24298
+ 'from': string;
24299
+ /**
24300
+ * The value kind.
24301
+ */
24302
+ 'kind': ConditionalFormattingAbsoluteDateValueKindEnum;
24303
+ /**
24304
+ * `YYYY-MM-DD`, or `YYYY-MM-DD HH:mm` at hour or minute granularity. Inclusive.
24305
+ */
24306
+ 'to': string;
24307
+ }
24308
+
24309
+ export declare type ConditionalFormattingAbsoluteDateValueKindEnum = 'absoluteDate';
24310
+
24311
+ /**
24312
+ * An attribute column, addressed by its bucket item local identifier.
24313
+ */
24314
+ export declare interface ConditionalFormattingAttributeTarget {
24315
+ 'attributeIdentifier': string;
24316
+ /**
24317
+ * The target kind.
24318
+ */
24319
+ 'kind': ConditionalFormattingAttributeTargetKindEnum;
24320
+ }
24321
+
24322
+ export declare type ConditionalFormattingAttributeTargetKindEnum = 'attribute';
24323
+
24324
+ /**
24325
+ * A condition and the formatting applied to cells matching it.
24326
+ */
24327
+ export declare interface ConditionalFormattingCondition {
24328
+ 'format': ConditionalFormattingFormat;
24329
+ /**
24330
+ * Client-assigned identifier, stable across edits.
24331
+ */
24332
+ 'id'?: string;
24333
+ /**
24334
+ * How a condition compares the cell value against its value.
24335
+ */
24336
+ 'operator': ConditionalFormattingConditionOperatorEnum;
24337
+ 'value': ConditionalFormattingValue;
24338
+ }
24339
+
24340
+ export declare type ConditionalFormattingConditionOperatorEnum = 'ALL' | 'GREATER_THAN' | 'GREATER_THAN_OR_EQUAL_TO' | 'LESS_THAN' | 'LESS_THAN_OR_EQUAL_TO' | 'EQUAL_TO' | 'NOT_EQUAL_TO' | 'BETWEEN' | 'NOT_BETWEEN' | 'CONTAINS' | 'NOT_CONTAINS' | 'STARTS_WITH' | 'NOT_STARTS_WITH' | 'ENDS_WITH' | 'NOT_ENDS_WITH' | 'IS_EMPTY' | 'IS_NOT_EMPTY';
24341
+
24342
+ /**
24343
+ * Visual formatting applied to a matching cell.
24344
+ */
24345
+ export declare interface ConditionalFormattingFormat {
24346
+ /**
24347
+ * Background color as a hex triplet.
24348
+ */
24349
+ 'backgroundColor'?: string;
24350
+ /**
24351
+ * Text color as a hex triplet.
24352
+ */
24353
+ 'color'?: string;
24354
+ /**
24355
+ * Whether the formatting applies to the matching cell only, or to its whole row.
24356
+ */
24357
+ 'scope': ConditionalFormattingFormatScopeEnum;
24358
+ }
24359
+
24360
+ export declare type ConditionalFormattingFormatScopeEnum = 'cell' | 'row';
24361
+
24362
+ /**
24363
+ * @type ConditionalFormattingLiteral
24364
+ * A string or a number, serialized in whichever form it was authored.
24365
+ */
24366
+ export declare type ConditionalFormattingLiteral = number | string;
24367
+
24368
+ /**
24369
+ * An inclusive numeric range.
24370
+ */
24371
+ export declare interface ConditionalFormattingLiteralRangeValue {
24372
+ 'from': number;
24373
+ /**
24374
+ * The value kind.
24375
+ */
24376
+ 'kind': ConditionalFormattingLiteralRangeValueKindEnum;
24377
+ 'to': number;
24378
+ }
24379
+
24380
+ export declare type ConditionalFormattingLiteralRangeValueKindEnum = 'literalRange';
24381
+
24382
+ /**
24383
+ * A single value compared against the cell value.
24384
+ */
24385
+ export declare interface ConditionalFormattingLiteralValue {
24386
+ /**
24387
+ * The value kind.
24388
+ */
24389
+ 'kind': ConditionalFormattingLiteralValueKindEnum;
24390
+ 'value': ConditionalFormattingLiteral;
24391
+ }
24392
+
24393
+ export declare type ConditionalFormattingLiteralValueKindEnum = 'literal';
24394
+
24395
+ /**
24396
+ * A measure column, addressed by its bucket item local identifier.
24397
+ */
24398
+ export declare interface ConditionalFormattingMeasureTarget {
24399
+ /**
24400
+ * The target kind.
24401
+ */
24402
+ 'kind': ConditionalFormattingMeasureTargetKindEnum;
24403
+ 'measureIdentifier': string;
24404
+ }
24405
+
24406
+ export declare type ConditionalFormattingMeasureTargetKindEnum = 'measure';
24407
+
24408
+ /**
24409
+ * No value; used by operators that take none.
24410
+ */
24411
+ export declare interface ConditionalFormattingNoneValue {
24412
+ /**
24413
+ * The value kind.
24414
+ */
24415
+ 'kind': ConditionalFormattingNoneValueKindEnum;
24416
+ }
24417
+
24418
+ export declare type ConditionalFormattingNoneValueKindEnum = 'none';
24419
+
24420
+ /**
24421
+ * A date period relative to the moment of evaluation, resolved at render time.
24422
+ */
24423
+ export declare interface ConditionalFormattingRelativeDateValue {
24424
+ /**
24425
+ * Offset in periods; 0 is the current period, negative is the past.
24426
+ */
24427
+ 'from': number;
24428
+ /**
24429
+ * Granularity the offsets are counted in.
24430
+ */
24431
+ 'granularity': ConditionalFormattingRelativeDateValueGranularityEnum;
24432
+ /**
24433
+ * The value kind.
24434
+ */
24435
+ 'kind': ConditionalFormattingRelativeDateValueKindEnum;
24436
+ /**
24437
+ * Offset in periods, not lower than `from`.
24438
+ */
24439
+ 'to': number;
24440
+ }
24441
+
24442
+ export declare type ConditionalFormattingRelativeDateValueGranularityEnum = 'ALL_TIME_GRANULARITY' | 'GDC.time.year' | 'GDC.time.week_us' | 'GDC.time.week_in_year' | 'GDC.time.week_in_quarter' | 'GDC.time.week' | 'GDC.time.euweek_in_year' | 'GDC.time.euweek_in_quarter' | 'GDC.time.quarter' | 'GDC.time.quarter_in_year' | 'GDC.time.month' | 'GDC.time.month_in_quarter' | 'GDC.time.month_in_year' | 'GDC.time.day_in_year' | 'GDC.time.day_in_quarter' | 'GDC.time.day_in_month' | 'GDC.time.day_in_week' | 'GDC.time.day_in_euweek' | 'GDC.time.date' | 'GDC.time.hour' | 'GDC.time.hour_in_day' | 'GDC.time.minute' | 'GDC.time.minute_in_hour' | 'GDC.time.minute_in_day' | 'GDC.time.second' | 'GDC.time.second_in_minute' | 'GDC.time.second_in_day' | 'GDC.time.fiscal_week' | 'GDC.time.fiscal_month' | 'GDC.time.fiscal_quarter' | 'GDC.time.fiscal_semester' | 'GDC.time.fiscal_year' | 'GDC.time.fiscal_day_in_fiscal_week' | 'GDC.time.fiscal_day_in_fiscal_month' | 'GDC.time.fiscal_day_in_fiscal_quarter' | 'GDC.time.fiscal_day_in_fiscal_semester' | 'GDC.time.fiscal_day_in_fiscal_year' | 'GDC.time.fiscal_week_in_fiscal_month' | 'GDC.time.fiscal_week_in_fiscal_quarter' | 'GDC.time.fiscal_week_in_fiscal_semester' | 'GDC.time.fiscal_week_in_fiscal_year' | 'GDC.time.fiscal_month_in_fiscal_quarter' | 'GDC.time.fiscal_month_in_fiscal_semester' | 'GDC.time.fiscal_month_in_fiscal_year' | 'GDC.time.fiscal_quarter_in_fiscal_semester' | 'GDC.time.fiscal_quarter_in_fiscal_year' | 'GDC.time.fiscal_semester_in_fiscal_year';
24443
+
24444
+ export declare type ConditionalFormattingRelativeDateValueKindEnum = 'relativeDate';
24445
+
24446
+ /**
24447
+ * Conditions applied to a single column.
24448
+ */
24449
+ export declare interface ConditionalFormattingRule {
24450
+ /**
24451
+ * Conditions evaluated in order; the first match wins.
24452
+ */
24453
+ 'conditions': Array<ConditionalFormattingCondition>;
24454
+ /**
24455
+ * Client-assigned identifier, stable across edits.
24456
+ */
24457
+ 'id'?: string;
24458
+ 'target': ConditionalFormattingTarget;
24459
+ }
24460
+
24461
+ /**
24462
+ * @type ConditionalFormattingTarget
24463
+ * Column a rule formats. The shape is selected by the `kind` property.
24464
+ */
24465
+ export declare type ConditionalFormattingTarget = ConditionalFormattingAttributeTarget | ConditionalFormattingMeasureTarget;
24466
+
24467
+ /**
24468
+ * @type ConditionalFormattingValue
24469
+ * Value a condition compares against. The shape is selected by the `kind` property.
24470
+ */
24471
+ export declare type ConditionalFormattingValue = ConditionalFormattingAbsoluteDateValue | ConditionalFormattingLiteralRangeValue | ConditionalFormattingLiteralValue | ConditionalFormattingNoneValue | ConditionalFormattingRelativeDateValue;
24472
+
24259
24473
  export declare class Configuration {
24260
24474
  /**
24261
24475
  * parameter for apiKey security
@@ -29423,13 +29637,13 @@ export declare function DataFiltersApi_UpdateEntityWorkspaceDataFilterSettings(a
29423
29637
  * @summary Post User Data Filters
29424
29638
  * @param {string} workspaceId
29425
29639
  * @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
29426
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29640
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29427
29641
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
29428
29642
  * @param {*} [options] Override http request option.
29429
29643
  * @param {Configuration} [configuration] Optional configuration.
29430
29644
  * @throws {RequiredError}
29431
29645
  */
29432
- export declare function DataFiltersApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29646
+ export declare function DataFiltersApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29433
29647
 
29434
29648
  /**
29435
29649
  *
@@ -29496,7 +29710,7 @@ export declare function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDat
29496
29710
  * @param {string} workspaceId
29497
29711
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
29498
29712
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29499
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29713
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29500
29714
  * @param {number} [page] Zero-based page index (0..N)
29501
29715
  * @param {number} [size] The size of the page to be returned
29502
29716
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -29506,7 +29720,7 @@ export declare function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDat
29506
29720
  * @param {Configuration} [configuration] Optional configuration.
29507
29721
  * @throws {RequiredError}
29508
29722
  */
29509
- export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29723
+ export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29510
29724
 
29511
29725
  /**
29512
29726
  *
@@ -29550,14 +29764,14 @@ export declare function DataFiltersApiAxiosParamCreator_GetAllEntitiesWorkspaceD
29550
29764
  * @param {string} workspaceId
29551
29765
  * @param {string} objectId
29552
29766
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29553
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29767
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29554
29768
  * @param {boolean} [xGDCVALIDATERELATIONS]
29555
29769
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
29556
29770
  * @param {*} [options] Override http request option.
29557
29771
  * @param {Configuration} [configuration] Optional configuration.
29558
29772
  * @throws {RequiredError}
29559
29773
  */
29560
- export declare function DataFiltersApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29774
+ export declare function DataFiltersApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29561
29775
 
29562
29776
  /**
29563
29777
  *
@@ -29605,12 +29819,12 @@ export declare function DataFiltersApiAxiosParamCreator_GetWorkspaceDataFiltersL
29605
29819
  * @param {string} objectId
29606
29820
  * @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
29607
29821
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29608
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29822
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29609
29823
  * @param {*} [options] Override http request option.
29610
29824
  * @param {Configuration} [configuration] Optional configuration.
29611
29825
  * @throws {RequiredError}
29612
29826
  */
29613
- export declare function DataFiltersApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29827
+ export declare function DataFiltersApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29614
29828
 
29615
29829
  /**
29616
29830
  *
@@ -29696,12 +29910,12 @@ export declare function DataFiltersApiAxiosParamCreator_SetWorkspaceDataFiltersL
29696
29910
  * @param {string} objectId
29697
29911
  * @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
29698
29912
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29699
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29913
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29700
29914
  * @param {*} [options] Override http request option.
29701
29915
  * @param {Configuration} [configuration] Optional configuration.
29702
29916
  * @throws {RequiredError}
29703
29917
  */
29704
- export declare function DataFiltersApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29918
+ export declare function DataFiltersApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
29705
29919
 
29706
29920
  /**
29707
29921
  *
@@ -29751,10 +29965,10 @@ export declare interface DataFiltersApiCreateEntityUserDataFiltersRequest {
29751
29965
  readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
29752
29966
  /**
29753
29967
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29754
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
29968
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
29755
29969
  * @memberof DataFiltersApiCreateEntityUserDataFilters
29756
29970
  */
29757
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
29971
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
29758
29972
  /**
29759
29973
  * Include Meta objects.
29760
29974
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -29913,10 +30127,10 @@ export declare interface DataFiltersApiGetAllEntitiesUserDataFiltersRequest {
29913
30127
  readonly filter?: string;
29914
30128
  /**
29915
30129
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29916
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30130
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
29917
30131
  * @memberof DataFiltersApiGetAllEntitiesUserDataFilters
29918
30132
  */
29919
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30133
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
29920
30134
  /**
29921
30135
  * Zero-based page index (0..N)
29922
30136
  * @type {number}
@@ -30099,10 +30313,10 @@ export declare interface DataFiltersApiGetEntityUserDataFiltersRequest {
30099
30313
  readonly filter?: string;
30100
30314
  /**
30101
30315
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30102
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30316
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30103
30317
  * @memberof DataFiltersApiGetEntityUserDataFilters
30104
30318
  */
30105
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30319
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30106
30320
  /**
30107
30321
  *
30108
30322
  * @type {boolean}
@@ -30451,10 +30665,10 @@ export declare interface DataFiltersApiPatchEntityUserDataFiltersRequest {
30451
30665
  readonly filter?: string;
30452
30666
  /**
30453
30667
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30454
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30668
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30455
30669
  * @memberof DataFiltersApiPatchEntityUserDataFilters
30456
30670
  */
30457
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30671
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30458
30672
  }
30459
30673
 
30460
30674
  /**
@@ -30675,10 +30889,10 @@ export declare interface DataFiltersApiUpdateEntityUserDataFiltersRequest {
30675
30889
  readonly filter?: string;
30676
30890
  /**
30677
30891
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30678
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30892
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
30679
30893
  * @memberof DataFiltersApiUpdateEntityUserDataFilters
30680
30894
  */
30681
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30895
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
30682
30896
  }
30683
30897
 
30684
30898
  /**
@@ -33336,6 +33550,10 @@ export declare interface DeclarativeAnalyticsLayer {
33336
33550
  * A list of attribute hierarchies.
33337
33551
  */
33338
33552
  'attributeHierarchies'?: Array<DeclarativeAttributeHierarchy>;
33553
+ /**
33554
+ * A list of computed attributes available in the model.
33555
+ */
33556
+ 'computedAttributes'?: Array<DeclarativeComputedAttribute>;
33339
33557
  /**
33340
33558
  * A list of dashboard plugins available in the model.
33341
33559
  */
@@ -33370,6 +33588,7 @@ export declare interface DeclarativeAnalyticsLayer {
33370
33588
  * A dataset attribute.
33371
33589
  */
33372
33590
  export declare interface DeclarativeAttribute {
33591
+ 'conditionalFormatting'?: ObjectConditionalFormatting | null;
33373
33592
  'defaultView'?: LabelIdentifier;
33374
33593
  /**
33375
33594
  * Attribute description.
@@ -33585,6 +33804,96 @@ export declare interface DeclarativeColumn {
33585
33804
 
33586
33805
  export declare type DeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
33587
33806
 
33807
+ export declare interface DeclarativeComputedAttribute {
33808
+ /**
33809
+ * Certification status of the entity.
33810
+ */
33811
+ 'certification'?: DeclarativeComputedAttributeCertificationEnum;
33812
+ /**
33813
+ * Optional message associated with the certification.
33814
+ */
33815
+ 'certificationMessage'?: string | null;
33816
+ /**
33817
+ * Time when the certification was set.
33818
+ */
33819
+ 'certifiedAt'?: string | null;
33820
+ 'certifiedBy'?: DeclarativeUserIdentifier;
33821
+ 'content': DeclarativeComputedAttributeContent;
33822
+ /**
33823
+ * Time of the entity creation.
33824
+ */
33825
+ 'createdAt'?: string | null;
33826
+ 'createdBy'?: DeclarativeUserIdentifier;
33827
+ /**
33828
+ * Computed attribute data type
33829
+ */
33830
+ 'dataType'?: DeclarativeComputedAttributeDataTypeEnum;
33831
+ /**
33832
+ * Computed attribute description.
33833
+ */
33834
+ 'description'?: string;
33835
+ /**
33836
+ * Computed attribute ID.
33837
+ */
33838
+ 'id': string;
33839
+ /**
33840
+ * If true, this computed attribute is hidden from AI search results.
33841
+ */
33842
+ 'isHidden'?: boolean;
33843
+ /**
33844
+ * Flag indicating whether the associated source column allows null values.
33845
+ */
33846
+ 'isNullable'?: boolean;
33847
+ /**
33848
+ * Default locale for primary computed label.
33849
+ */
33850
+ 'locale'?: string;
33851
+ /**
33852
+ * Time of the last entity modification.
33853
+ */
33854
+ 'modifiedAt'?: string | null;
33855
+ 'modifiedBy'?: DeclarativeUserIdentifier;
33856
+ /**
33857
+ * Value used in coalesce during joins instead of null.
33858
+ */
33859
+ 'nullValue'?: string;
33860
+ /**
33861
+ * A list of tags.
33862
+ */
33863
+ 'tags'?: Array<string>;
33864
+ /**
33865
+ * Computed attribute title.
33866
+ */
33867
+ 'title': string;
33868
+ /**
33869
+ * Specific type of the computed attribute value
33870
+ */
33871
+ 'valueType'?: DeclarativeComputedAttributeValueTypeEnum;
33872
+ }
33873
+
33874
+ export declare type DeclarativeComputedAttributeCertificationEnum = 'CERTIFIED';
33875
+
33876
+ /**
33877
+ * A definition of the computed attribute content.
33878
+ */
33879
+ export declare interface DeclarativeComputedAttributeContent {
33880
+ /**
33881
+ * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
33882
+ */
33883
+ 'format'?: string | null;
33884
+ 'maql': string;
33885
+ /**
33886
+ * Categorizes metric semantics (e.g., currency).
33887
+ */
33888
+ 'metricType'?: DeclarativeComputedAttributeContentMetricTypeEnum;
33889
+ }
33890
+
33891
+ export declare type DeclarativeComputedAttributeContentMetricTypeEnum = 'UNSPECIFIED' | 'CURRENCY';
33892
+
33893
+ export declare type DeclarativeComputedAttributeDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
33894
+
33895
+ export declare type DeclarativeComputedAttributeValueTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' | 'GEO_LONGITUDE' | 'GEO_LATITUDE' | 'GEO_AREA' | 'GEO_ICON' | 'IMAGE' | 'HYPERLOGLOG';
33896
+
33588
33897
  export declare interface DeclarativeCspDirective {
33589
33898
  'directive': string;
33590
33899
  'sources': Array<string>;
@@ -33860,12 +34169,13 @@ export declare interface DeclarativeDataSources {
33860
34169
  'dataSources': Array<DeclarativeDataSource>;
33861
34170
  }
33862
34171
 
33863
- export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
34172
+ export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
33864
34173
 
33865
34174
  /**
33866
34175
  * A date dataset.
33867
34176
  */
33868
34177
  export declare interface DeclarativeDateDataset {
34178
+ 'conditionalFormatting'?: ObjectConditionalFormatting | null;
33869
34179
  /**
33870
34180
  * Date dataset description.
33871
34181
  */
@@ -34160,6 +34470,7 @@ export declare interface DeclarativeJwk {
34160
34470
  * A attribute label.
34161
34471
  */
34162
34472
  export declare interface DeclarativeLabel {
34473
+ 'conditionalFormatting'?: ObjectConditionalFormatting | null;
34163
34474
  /**
34164
34475
  * Label description.
34165
34476
  */
@@ -34314,6 +34625,7 @@ export declare interface DeclarativeMetric {
34314
34625
  */
34315
34626
  'certifiedAt'?: string | null;
34316
34627
  'certifiedBy'?: DeclarativeUserIdentifier;
34628
+ 'conditionalFormatting'?: ObjectConditionalFormatting | null;
34317
34629
  /**
34318
34630
  * Free-form JSON object
34319
34631
  */
@@ -34656,7 +34968,7 @@ export declare interface DeclarativeSetting {
34656
34968
  'type'?: DeclarativeSettingTypeEnum;
34657
34969
  }
34658
34970
 
34659
- export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
34971
+ export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
34660
34972
 
34661
34973
  export declare interface DeclarativeSingleWorkspacePermission {
34662
34974
  'assignee': AssigneeIdentifier;
@@ -34914,6 +35226,7 @@ export declare interface DeclarativeVisualizationObject {
34914
35226
  */
34915
35227
  'certifiedAt'?: string | null;
34916
35228
  'certifiedBy'?: DeclarativeUserIdentifier;
35229
+ 'conditionalFormatting'?: ConditionalFormatting | null;
34917
35230
  /**
34918
35231
  * Free-form JSON object
34919
35232
  */
@@ -35620,6 +35933,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
35620
35933
  * @memberof EntitiesApi
35621
35934
  */
35622
35935
  createEntityColorPalettes(requestParameters: EntitiesApiCreateEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
35936
+ /**
35937
+ *
35938
+ * @summary Post Computed Attributes
35939
+ * @param {EntitiesApiCreateEntityComputedAttributesRequest} requestParameters Request parameters.
35940
+ * @param {*} [options] Override http request option.
35941
+ * @throws {RequiredError}
35942
+ * @memberof EntitiesApi
35943
+ */
35944
+ createEntityComputedAttributes(requestParameters: EntitiesApiCreateEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
35623
35945
  /**
35624
35946
  * Context Security Police Directive
35625
35947
  * @summary Post CSP Directives
@@ -35990,6 +36312,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
35990
36312
  * @memberof EntitiesApi
35991
36313
  */
35992
36314
  deleteEntityColorPalettes(requestParameters: EntitiesApiDeleteEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
36315
+ /**
36316
+ *
36317
+ * @summary Delete a Computed Attribute
36318
+ * @param {EntitiesApiDeleteEntityComputedAttributesRequest} requestParameters Request parameters.
36319
+ * @param {*} [options] Override http request option.
36320
+ * @throws {RequiredError}
36321
+ * @memberof EntitiesApi
36322
+ */
36323
+ deleteEntityComputedAttributes(requestParameters: EntitiesApiDeleteEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
35993
36324
  /**
35994
36325
  * Context Security Police Directive
35995
36326
  * @summary Delete CSP Directives
@@ -36386,6 +36717,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
36386
36717
  * @memberof EntitiesApi
36387
36718
  */
36388
36719
  getAllEntitiesColorPalettes(requestParameters?: EntitiesApiGetAllEntitiesColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutList>;
36720
+ /**
36721
+ *
36722
+ * @summary Get all Computed Attributes
36723
+ * @param {EntitiesApiGetAllEntitiesComputedAttributesRequest} requestParameters Request parameters.
36724
+ * @param {*} [options] Override http request option.
36725
+ * @throws {RequiredError}
36726
+ * @memberof EntitiesApi
36727
+ */
36728
+ getAllEntitiesComputedAttributes(requestParameters: EntitiesApiGetAllEntitiesComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutList>;
36389
36729
  /**
36390
36730
  * Context Security Police Directive
36391
36731
  * @summary Get CSP Directives
@@ -36864,6 +37204,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
36864
37204
  * @memberof EntitiesApi
36865
37205
  */
36866
37206
  getEntityColorPalettes(requestParameters: EntitiesApiGetEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
37207
+ /**
37208
+ *
37209
+ * @summary Get a Computed Attribute
37210
+ * @param {EntitiesApiGetEntityComputedAttributesRequest} requestParameters Request parameters.
37211
+ * @param {*} [options] Override http request option.
37212
+ * @throws {RequiredError}
37213
+ * @memberof EntitiesApi
37214
+ */
37215
+ getEntityComputedAttributes(requestParameters: EntitiesApiGetEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
36867
37216
  /**
36868
37217
  *
36869
37218
  * @summary Get CookieSecurityConfiguration
@@ -37333,6 +37682,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
37333
37682
  * @memberof EntitiesApi
37334
37683
  */
37335
37684
  patchEntityColorPalettes(requestParameters: EntitiesApiPatchEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
37685
+ /**
37686
+ *
37687
+ * @summary Patch a Computed Attribute
37688
+ * @param {EntitiesApiPatchEntityComputedAttributesRequest} requestParameters Request parameters.
37689
+ * @param {*} [options] Override http request option.
37690
+ * @throws {RequiredError}
37691
+ * @memberof EntitiesApi
37692
+ */
37693
+ patchEntityComputedAttributes(requestParameters: EntitiesApiPatchEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
37336
37694
  /**
37337
37695
  *
37338
37696
  * @summary Patch CookieSecurityConfiguration
@@ -37711,6 +38069,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
37711
38069
  * @memberof EntitiesApi
37712
38070
  */
37713
38071
  searchEntitiesAutomations(requestParameters: EntitiesApiSearchEntitiesAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiAutomationOutList>;
38072
+ /**
38073
+ *
38074
+ * @summary The search endpoint (beta)
38075
+ * @param {EntitiesApiSearchEntitiesComputedAttributesRequest} requestParameters Request parameters.
38076
+ * @param {*} [options] Override http request option.
38077
+ * @throws {RequiredError}
38078
+ * @memberof EntitiesApi
38079
+ */
38080
+ searchEntitiesComputedAttributes(requestParameters: EntitiesApiSearchEntitiesComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutList>;
37714
38081
  /**
37715
38082
  *
37716
38083
  * @summary The search endpoint (beta)
@@ -37919,6 +38286,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
37919
38286
  * @memberof EntitiesApi
37920
38287
  */
37921
38288
  updateEntityColorPalettes(requestParameters: EntitiesApiUpdateEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
38289
+ /**
38290
+ *
38291
+ * @summary Put a Computed Attribute
38292
+ * @param {EntitiesApiUpdateEntityComputedAttributesRequest} requestParameters Request parameters.
38293
+ * @param {*} [options] Override http request option.
38294
+ * @throws {RequiredError}
38295
+ * @memberof EntitiesApi
38296
+ */
38297
+ updateEntityComputedAttributes(requestParameters: EntitiesApiUpdateEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
37922
38298
  /**
37923
38299
  *
37924
38300
  * @summary Put CookieSecurityConfiguration
@@ -41697,13 +42073,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityMemoryItems(wor
41697
42073
  * @summary Post Metrics
41698
42074
  * @param {string} workspaceId
41699
42075
  * @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
41700
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42076
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
41701
42077
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
41702
42078
  * @param {*} [options] Override http request option.
41703
42079
  * @param {Configuration} [configuration] Optional configuration.
41704
42080
  * @throws {RequiredError}
41705
42081
  */
41706
- export declare function EntitiesApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
42082
+ export declare function EntitiesApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
41707
42083
 
41708
42084
  /**
41709
42085
  *
@@ -41753,13 +42129,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityThemes(jsonApiT
41753
42129
  * @summary Post User Data Filters
41754
42130
  * @param {string} workspaceId
41755
42131
  * @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
41756
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42132
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
41757
42133
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
41758
42134
  * @param {*} [options] Override http request option.
41759
42135
  * @param {Configuration} [configuration] Optional configuration.
41760
42136
  * @throws {RequiredError}
41761
42137
  */
41762
- export declare function EntitiesApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
42138
+ export declare function EntitiesApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
41763
42139
 
41764
42140
  /**
41765
42141
  * User Group - creates tree-like structure for categorizing users
@@ -42722,7 +43098,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMemoryItems(w
42722
43098
  * @param {string} workspaceId
42723
43099
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
42724
43100
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
42725
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43101
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42726
43102
  * @param {number} [page] Zero-based page index (0..N)
42727
43103
  * @param {number} [size] The size of the page to be returned
42728
43104
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -42732,7 +43108,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMemoryItems(w
42732
43108
  * @param {Configuration} [configuration] Optional configuration.
42733
43109
  * @throws {RequiredError}
42734
43110
  */
42735
- export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43111
+ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
42736
43112
 
42737
43113
  /**
42738
43114
  *
@@ -42814,7 +43190,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesThemes(filter
42814
43190
  * @param {string} workspaceId
42815
43191
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
42816
43192
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
42817
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43193
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42818
43194
  * @param {number} [page] Zero-based page index (0..N)
42819
43195
  * @param {number} [size] The size of the page to be returned
42820
43196
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -42824,7 +43200,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesThemes(filter
42824
43200
  * @param {Configuration} [configuration] Optional configuration.
42825
43201
  * @throws {RequiredError}
42826
43202
  */
42827
- export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43203
+ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
42828
43204
 
42829
43205
  /**
42830
43206
  * User Group - creates tree-like structure for categorizing users
@@ -43399,14 +43775,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityMemoryItems(worksp
43399
43775
  * @param {string} workspaceId
43400
43776
  * @param {string} objectId
43401
43777
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
43402
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43778
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43403
43779
  * @param {boolean} [xGDCVALIDATERELATIONS]
43404
43780
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
43405
43781
  * @param {*} [options] Override http request option.
43406
43782
  * @param {Configuration} [configuration] Optional configuration.
43407
43783
  * @throws {RequiredError}
43408
43784
  */
43409
- export declare function EntitiesApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43785
+ export declare function EntitiesApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43410
43786
 
43411
43787
  /**
43412
43788
  *
@@ -43486,14 +43862,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityThemes(id: string,
43486
43862
  * @param {string} workspaceId
43487
43863
  * @param {string} objectId
43488
43864
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
43489
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43865
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43490
43866
  * @param {boolean} [xGDCVALIDATERELATIONS]
43491
43867
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
43492
43868
  * @param {*} [options] Override http request option.
43493
43869
  * @param {Configuration} [configuration] Optional configuration.
43494
43870
  * @throws {RequiredError}
43495
43871
  */
43496
- export declare function EntitiesApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43872
+ export declare function EntitiesApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43497
43873
 
43498
43874
  /**
43499
43875
  * User Group - creates tree-like structure for categorizing users
@@ -43975,12 +44351,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityMemoryItems(work
43975
44351
  * @param {string} objectId
43976
44352
  * @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
43977
44353
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
43978
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44354
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43979
44355
  * @param {*} [options] Override http request option.
43980
44356
  * @param {Configuration} [configuration] Optional configuration.
43981
44357
  * @throws {RequiredError}
43982
44358
  */
43983
- export declare function EntitiesApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
44359
+ export declare function EntitiesApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
43984
44360
 
43985
44361
  /**
43986
44362
  *
@@ -44052,12 +44428,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityThemes(id: strin
44052
44428
  * @param {string} objectId
44053
44429
  * @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
44054
44430
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
44055
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44431
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44056
44432
  * @param {*} [options] Override http request option.
44057
44433
  * @param {Configuration} [configuration] Optional configuration.
44058
44434
  * @throws {RequiredError}
44059
44435
  */
44060
- export declare function EntitiesApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
44436
+ export declare function EntitiesApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
44061
44437
 
44062
44438
  /**
44063
44439
  * User Group - creates tree-like structure for categorizing users
@@ -44745,12 +45121,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityMemoryItems(wor
44745
45121
  * @param {string} objectId
44746
45122
  * @param {JsonApiMetricInDocument} jsonApiMetricInDocument
44747
45123
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
44748
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45124
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44749
45125
  * @param {*} [options] Override http request option.
44750
45126
  * @param {Configuration} [configuration] Optional configuration.
44751
45127
  * @throws {RequiredError}
44752
45128
  */
44753
- export declare function EntitiesApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
45129
+ export declare function EntitiesApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
44754
45130
 
44755
45131
  /**
44756
45132
  *
@@ -44822,12 +45198,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityThemes(id: stri
44822
45198
  * @param {string} objectId
44823
45199
  * @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
44824
45200
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
44825
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45201
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44826
45202
  * @param {*} [options] Override http request option.
44827
45203
  * @param {Configuration} [configuration] Optional configuration.
44828
45204
  * @throws {RequiredError}
44829
45205
  */
44830
- export declare function EntitiesApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
45206
+ export declare function EntitiesApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
44831
45207
 
44832
45208
  /**
44833
45209
  * User Group - creates tree-like structure for categorizing users
@@ -45112,6 +45488,38 @@ export declare interface EntitiesApiCreateEntityColorPalettesRequest {
45112
45488
  readonly jsonApiColorPaletteInDocument: JsonApiColorPaletteInDocument;
45113
45489
  }
45114
45490
 
45491
+ /**
45492
+ * Request parameters for createEntityComputedAttributes operation in EntitiesApi.
45493
+ * @export
45494
+ * @interface EntitiesApiCreateEntityComputedAttributesRequest
45495
+ */
45496
+ export declare interface EntitiesApiCreateEntityComputedAttributesRequest {
45497
+ /**
45498
+ *
45499
+ * @type {string}
45500
+ * @memberof EntitiesApiCreateEntityComputedAttributes
45501
+ */
45502
+ readonly workspaceId: string;
45503
+ /**
45504
+ *
45505
+ * @type {JsonApiComputedAttributePostOptionalIdDocument}
45506
+ * @memberof EntitiesApiCreateEntityComputedAttributes
45507
+ */
45508
+ readonly jsonApiComputedAttributePostOptionalIdDocument: JsonApiComputedAttributePostOptionalIdDocument;
45509
+ /**
45510
+ * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45511
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
45512
+ * @memberof EntitiesApiCreateEntityComputedAttributes
45513
+ */
45514
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
45515
+ /**
45516
+ * Include Meta objects.
45517
+ * @type {Array<'origin' | 'all' | 'ALL'>}
45518
+ * @memberof EntitiesApiCreateEntityComputedAttributes
45519
+ */
45520
+ readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
45521
+ }
45522
+
45115
45523
  /**
45116
45524
  * Request parameters for createEntityCspDirectives operation in EntitiesApi.
45117
45525
  * @export
@@ -45488,10 +45896,10 @@ export declare interface EntitiesApiCreateEntityMetricsRequest {
45488
45896
  readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
45489
45897
  /**
45490
45898
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45491
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
45899
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
45492
45900
  * @memberof EntitiesApiCreateEntityMetrics
45493
45901
  */
45494
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
45902
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
45495
45903
  /**
45496
45904
  * Include Meta objects.
45497
45905
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -45614,10 +46022,10 @@ export declare interface EntitiesApiCreateEntityUserDataFiltersRequest {
45614
46022
  readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
45615
46023
  /**
45616
46024
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45617
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
46025
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
45618
46026
  * @memberof EntitiesApiCreateEntityUserDataFilters
45619
46027
  */
45620
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
46028
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
45621
46029
  /**
45622
46030
  * Include Meta objects.
45623
46031
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -46020,6 +46428,26 @@ export declare interface EntitiesApiDeleteEntityColorPalettesRequest {
46020
46428
  readonly id: string;
46021
46429
  }
46022
46430
 
46431
+ /**
46432
+ * Request parameters for deleteEntityComputedAttributes operation in EntitiesApi.
46433
+ * @export
46434
+ * @interface EntitiesApiDeleteEntityComputedAttributesRequest
46435
+ */
46436
+ export declare interface EntitiesApiDeleteEntityComputedAttributesRequest {
46437
+ /**
46438
+ *
46439
+ * @type {string}
46440
+ * @memberof EntitiesApiDeleteEntityComputedAttributes
46441
+ */
46442
+ readonly workspaceId: string;
46443
+ /**
46444
+ *
46445
+ * @type {string}
46446
+ * @memberof EntitiesApiDeleteEntityComputedAttributes
46447
+ */
46448
+ readonly objectId: string;
46449
+ }
46450
+
46023
46451
  /**
46024
46452
  * Request parameters for deleteEntityCspDirectives operation in EntitiesApi.
46025
46453
  * @export
@@ -47104,6 +47532,68 @@ export declare interface EntitiesApiGetAllEntitiesColorPalettesRequest {
47104
47532
  readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
47105
47533
  }
47106
47534
 
47535
+ /**
47536
+ * Request parameters for getAllEntitiesComputedAttributes operation in EntitiesApi.
47537
+ * @export
47538
+ * @interface EntitiesApiGetAllEntitiesComputedAttributesRequest
47539
+ */
47540
+ export declare interface EntitiesApiGetAllEntitiesComputedAttributesRequest {
47541
+ /**
47542
+ *
47543
+ * @type {string}
47544
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47545
+ */
47546
+ readonly workspaceId: string;
47547
+ /**
47548
+ *
47549
+ * @type {'ALL' | 'PARENTS' | 'NATIVE'}
47550
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47551
+ */
47552
+ readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
47553
+ /**
47554
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
47555
+ * @type {string}
47556
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47557
+ */
47558
+ readonly filter?: string;
47559
+ /**
47560
+ * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
47561
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
47562
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47563
+ */
47564
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
47565
+ /**
47566
+ * Zero-based page index (0..N)
47567
+ * @type {number}
47568
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47569
+ */
47570
+ readonly page?: number;
47571
+ /**
47572
+ * The size of the page to be returned
47573
+ * @type {number}
47574
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47575
+ */
47576
+ readonly size?: number;
47577
+ /**
47578
+ * Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
47579
+ * @type {Array<string>}
47580
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47581
+ */
47582
+ readonly sort?: Array<string>;
47583
+ /**
47584
+ *
47585
+ * @type {boolean}
47586
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47587
+ */
47588
+ readonly xGDCVALIDATERELATIONS?: boolean;
47589
+ /**
47590
+ * Include Meta objects.
47591
+ * @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
47592
+ * @memberof EntitiesApiGetAllEntitiesComputedAttributes
47593
+ */
47594
+ readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
47595
+ }
47596
+
47107
47597
  /**
47108
47598
  * Request parameters for getAllEntitiesCspDirectives operation in EntitiesApi.
47109
47599
  * @export
@@ -48230,10 +48720,10 @@ export declare interface EntitiesApiGetAllEntitiesMetricsRequest {
48230
48720
  readonly filter?: string;
48231
48721
  /**
48232
48722
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
48233
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
48723
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
48234
48724
  * @memberof EntitiesApiGetAllEntitiesMetrics
48235
48725
  */
48236
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
48726
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
48237
48727
  /**
48238
48728
  * Zero-based page index (0..N)
48239
48729
  * @type {number}
@@ -48550,10 +49040,10 @@ export declare interface EntitiesApiGetAllEntitiesUserDataFiltersRequest {
48550
49040
  readonly filter?: string;
48551
49041
  /**
48552
49042
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
48553
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
49043
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
48554
49044
  * @memberof EntitiesApiGetAllEntitiesUserDataFilters
48555
49045
  */
48556
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
49046
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
48557
49047
  /**
48558
49048
  * Zero-based page index (0..N)
48559
49049
  * @type {number}
@@ -49502,6 +49992,50 @@ export declare interface EntitiesApiGetEntityColorPalettesRequest {
49502
49992
  readonly filter?: string;
49503
49993
  }
49504
49994
 
49995
+ /**
49996
+ * Request parameters for getEntityComputedAttributes operation in EntitiesApi.
49997
+ * @export
49998
+ * @interface EntitiesApiGetEntityComputedAttributesRequest
49999
+ */
50000
+ export declare interface EntitiesApiGetEntityComputedAttributesRequest {
50001
+ /**
50002
+ *
50003
+ * @type {string}
50004
+ * @memberof EntitiesApiGetEntityComputedAttributes
50005
+ */
50006
+ readonly workspaceId: string;
50007
+ /**
50008
+ *
50009
+ * @type {string}
50010
+ * @memberof EntitiesApiGetEntityComputedAttributes
50011
+ */
50012
+ readonly objectId: string;
50013
+ /**
50014
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
50015
+ * @type {string}
50016
+ * @memberof EntitiesApiGetEntityComputedAttributes
50017
+ */
50018
+ readonly filter?: string;
50019
+ /**
50020
+ * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
50021
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
50022
+ * @memberof EntitiesApiGetEntityComputedAttributes
50023
+ */
50024
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
50025
+ /**
50026
+ *
50027
+ * @type {boolean}
50028
+ * @memberof EntitiesApiGetEntityComputedAttributes
50029
+ */
50030
+ readonly xGDCVALIDATERELATIONS?: boolean;
50031
+ /**
50032
+ * Include Meta objects.
50033
+ * @type {Array<'origin' | 'all' | 'ALL'>}
50034
+ * @memberof EntitiesApiGetEntityComputedAttributes
50035
+ */
50036
+ readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
50037
+ }
50038
+
49505
50039
  /**
49506
50040
  * Request parameters for getEntityCookieSecurityConfigurations operation in EntitiesApi.
49507
50041
  * @export
@@ -50252,10 +50786,10 @@ export declare interface EntitiesApiGetEntityMetricsRequest {
50252
50786
  readonly filter?: string;
50253
50787
  /**
50254
50788
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
50255
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
50789
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
50256
50790
  * @memberof EntitiesApiGetEntityMetrics
50257
50791
  */
50258
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
50792
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
50259
50793
  /**
50260
50794
  *
50261
50795
  * @type {boolean}
@@ -50492,10 +51026,10 @@ export declare interface EntitiesApiGetEntityUserDataFiltersRequest {
50492
51026
  readonly filter?: string;
50493
51027
  /**
50494
51028
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
50495
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
51029
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
50496
51030
  * @memberof EntitiesApiGetEntityUserDataFilters
50497
51031
  */
50498
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
51032
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
50499
51033
  /**
50500
51034
  *
50501
51035
  * @type {boolean}
@@ -51007,6 +51541,15 @@ export declare interface EntitiesApiInterface {
51007
51541
  * @memberof EntitiesApiInterface
51008
51542
  */
51009
51543
  createEntityColorPalettes(requestParameters: EntitiesApiCreateEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
51544
+ /**
51545
+ *
51546
+ * @summary Post Computed Attributes
51547
+ * @param {EntitiesApiCreateEntityComputedAttributesRequest} requestParameters Request parameters.
51548
+ * @param {*} [options] Override http request option.
51549
+ * @throws {RequiredError}
51550
+ * @memberof EntitiesApiInterface
51551
+ */
51552
+ createEntityComputedAttributes(requestParameters: EntitiesApiCreateEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
51010
51553
  /**
51011
51554
  * Context Security Police Directive
51012
51555
  * @summary Post CSP Directives
@@ -51377,6 +51920,15 @@ export declare interface EntitiesApiInterface {
51377
51920
  * @memberof EntitiesApiInterface
51378
51921
  */
51379
51922
  deleteEntityColorPalettes(requestParameters: EntitiesApiDeleteEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
51923
+ /**
51924
+ *
51925
+ * @summary Delete a Computed Attribute
51926
+ * @param {EntitiesApiDeleteEntityComputedAttributesRequest} requestParameters Request parameters.
51927
+ * @param {*} [options] Override http request option.
51928
+ * @throws {RequiredError}
51929
+ * @memberof EntitiesApiInterface
51930
+ */
51931
+ deleteEntityComputedAttributes(requestParameters: EntitiesApiDeleteEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
51380
51932
  /**
51381
51933
  * Context Security Police Directive
51382
51934
  * @summary Delete CSP Directives
@@ -51773,6 +52325,15 @@ export declare interface EntitiesApiInterface {
51773
52325
  * @memberof EntitiesApiInterface
51774
52326
  */
51775
52327
  getAllEntitiesColorPalettes(requestParameters: EntitiesApiGetAllEntitiesColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutList>;
52328
+ /**
52329
+ *
52330
+ * @summary Get all Computed Attributes
52331
+ * @param {EntitiesApiGetAllEntitiesComputedAttributesRequest} requestParameters Request parameters.
52332
+ * @param {*} [options] Override http request option.
52333
+ * @throws {RequiredError}
52334
+ * @memberof EntitiesApiInterface
52335
+ */
52336
+ getAllEntitiesComputedAttributes(requestParameters: EntitiesApiGetAllEntitiesComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutList>;
51776
52337
  /**
51777
52338
  * Context Security Police Directive
51778
52339
  * @summary Get CSP Directives
@@ -52251,6 +52812,15 @@ export declare interface EntitiesApiInterface {
52251
52812
  * @memberof EntitiesApiInterface
52252
52813
  */
52253
52814
  getEntityColorPalettes(requestParameters: EntitiesApiGetEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
52815
+ /**
52816
+ *
52817
+ * @summary Get a Computed Attribute
52818
+ * @param {EntitiesApiGetEntityComputedAttributesRequest} requestParameters Request parameters.
52819
+ * @param {*} [options] Override http request option.
52820
+ * @throws {RequiredError}
52821
+ * @memberof EntitiesApiInterface
52822
+ */
52823
+ getEntityComputedAttributes(requestParameters: EntitiesApiGetEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
52254
52824
  /**
52255
52825
  *
52256
52826
  * @summary Get CookieSecurityConfiguration
@@ -52720,6 +53290,15 @@ export declare interface EntitiesApiInterface {
52720
53290
  * @memberof EntitiesApiInterface
52721
53291
  */
52722
53292
  patchEntityColorPalettes(requestParameters: EntitiesApiPatchEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
53293
+ /**
53294
+ *
53295
+ * @summary Patch a Computed Attribute
53296
+ * @param {EntitiesApiPatchEntityComputedAttributesRequest} requestParameters Request parameters.
53297
+ * @param {*} [options] Override http request option.
53298
+ * @throws {RequiredError}
53299
+ * @memberof EntitiesApiInterface
53300
+ */
53301
+ patchEntityComputedAttributes(requestParameters: EntitiesApiPatchEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
52723
53302
  /**
52724
53303
  *
52725
53304
  * @summary Patch CookieSecurityConfiguration
@@ -53098,6 +53677,15 @@ export declare interface EntitiesApiInterface {
53098
53677
  * @memberof EntitiesApiInterface
53099
53678
  */
53100
53679
  searchEntitiesAutomations(requestParameters: EntitiesApiSearchEntitiesAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiAutomationOutList>;
53680
+ /**
53681
+ *
53682
+ * @summary The search endpoint (beta)
53683
+ * @param {EntitiesApiSearchEntitiesComputedAttributesRequest} requestParameters Request parameters.
53684
+ * @param {*} [options] Override http request option.
53685
+ * @throws {RequiredError}
53686
+ * @memberof EntitiesApiInterface
53687
+ */
53688
+ searchEntitiesComputedAttributes(requestParameters: EntitiesApiSearchEntitiesComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutList>;
53101
53689
  /**
53102
53690
  *
53103
53691
  * @summary The search endpoint (beta)
@@ -53306,6 +53894,15 @@ export declare interface EntitiesApiInterface {
53306
53894
  * @memberof EntitiesApiInterface
53307
53895
  */
53308
53896
  updateEntityColorPalettes(requestParameters: EntitiesApiUpdateEntityColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiColorPaletteOutDocument>;
53897
+ /**
53898
+ *
53899
+ * @summary Put a Computed Attribute
53900
+ * @param {EntitiesApiUpdateEntityComputedAttributesRequest} requestParameters Request parameters.
53901
+ * @param {*} [options] Override http request option.
53902
+ * @throws {RequiredError}
53903
+ * @memberof EntitiesApiInterface
53904
+ */
53905
+ updateEntityComputedAttributes(requestParameters: EntitiesApiUpdateEntityComputedAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiComputedAttributeOutDocument>;
53309
53906
  /**
53310
53907
  *
53311
53908
  * @summary Put CookieSecurityConfiguration
@@ -53842,6 +54439,44 @@ export declare interface EntitiesApiPatchEntityColorPalettesRequest {
53842
54439
  readonly filter?: string;
53843
54440
  }
53844
54441
 
54442
+ /**
54443
+ * Request parameters for patchEntityComputedAttributes operation in EntitiesApi.
54444
+ * @export
54445
+ * @interface EntitiesApiPatchEntityComputedAttributesRequest
54446
+ */
54447
+ export declare interface EntitiesApiPatchEntityComputedAttributesRequest {
54448
+ /**
54449
+ *
54450
+ * @type {string}
54451
+ * @memberof EntitiesApiPatchEntityComputedAttributes
54452
+ */
54453
+ readonly workspaceId: string;
54454
+ /**
54455
+ *
54456
+ * @type {string}
54457
+ * @memberof EntitiesApiPatchEntityComputedAttributes
54458
+ */
54459
+ readonly objectId: string;
54460
+ /**
54461
+ *
54462
+ * @type {JsonApiComputedAttributePatchDocument}
54463
+ * @memberof EntitiesApiPatchEntityComputedAttributes
54464
+ */
54465
+ readonly jsonApiComputedAttributePatchDocument: JsonApiComputedAttributePatchDocument;
54466
+ /**
54467
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
54468
+ * @type {string}
54469
+ * @memberof EntitiesApiPatchEntityComputedAttributes
54470
+ */
54471
+ readonly filter?: string;
54472
+ /**
54473
+ * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
54474
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
54475
+ * @memberof EntitiesApiPatchEntityComputedAttributes
54476
+ */
54477
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
54478
+ }
54479
+
53845
54480
  /**
53846
54481
  * Request parameters for patchEntityCookieSecurityConfigurations operation in EntitiesApi.
53847
54482
  * @export
@@ -54456,10 +55091,10 @@ export declare interface EntitiesApiPatchEntityMetricsRequest {
54456
55091
  readonly filter?: string;
54457
55092
  /**
54458
55093
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
54459
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
55094
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
54460
55095
  * @memberof EntitiesApiPatchEntityMetrics
54461
55096
  */
54462
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
55097
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
54463
55098
  }
54464
55099
 
54465
55100
  /**
@@ -54688,10 +55323,10 @@ export declare interface EntitiesApiPatchEntityUserDataFiltersRequest {
54688
55323
  readonly filter?: string;
54689
55324
  /**
54690
55325
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
54691
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
55326
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
54692
55327
  * @memberof EntitiesApiPatchEntityUserDataFilters
54693
55328
  */
54694
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
55329
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
54695
55330
  }
54696
55331
 
54697
55332
  /**
@@ -55224,6 +55859,38 @@ export declare interface EntitiesApiSearchEntitiesAutomationsRequest {
55224
55859
  readonly xGDCVALIDATERELATIONS?: boolean;
55225
55860
  }
55226
55861
 
55862
+ /**
55863
+ * Request parameters for searchEntitiesComputedAttributes operation in EntitiesApi.
55864
+ * @export
55865
+ * @interface EntitiesApiSearchEntitiesComputedAttributesRequest
55866
+ */
55867
+ export declare interface EntitiesApiSearchEntitiesComputedAttributesRequest {
55868
+ /**
55869
+ *
55870
+ * @type {string}
55871
+ * @memberof EntitiesApiSearchEntitiesComputedAttributes
55872
+ */
55873
+ readonly workspaceId: string;
55874
+ /**
55875
+ * Search request body with filter, pagination, and sorting options
55876
+ * @type {EntitySearchBody}
55877
+ * @memberof EntitiesApiSearchEntitiesComputedAttributes
55878
+ */
55879
+ readonly entitySearchBody: EntitySearchBody;
55880
+ /**
55881
+ *
55882
+ * @type {'ALL' | 'PARENTS' | 'NATIVE'}
55883
+ * @memberof EntitiesApiSearchEntitiesComputedAttributes
55884
+ */
55885
+ readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
55886
+ /**
55887
+ *
55888
+ * @type {boolean}
55889
+ * @memberof EntitiesApiSearchEntitiesComputedAttributes
55890
+ */
55891
+ readonly xGDCVALIDATERELATIONS?: boolean;
55892
+ }
55893
+
55227
55894
  /**
55228
55895
  * Request parameters for searchEntitiesCustomApplicationSettings operation in EntitiesApi.
55229
55896
  * @export
@@ -55940,6 +56607,44 @@ export declare interface EntitiesApiUpdateEntityColorPalettesRequest {
55940
56607
  readonly filter?: string;
55941
56608
  }
55942
56609
 
56610
+ /**
56611
+ * Request parameters for updateEntityComputedAttributes operation in EntitiesApi.
56612
+ * @export
56613
+ * @interface EntitiesApiUpdateEntityComputedAttributesRequest
56614
+ */
56615
+ export declare interface EntitiesApiUpdateEntityComputedAttributesRequest {
56616
+ /**
56617
+ *
56618
+ * @type {string}
56619
+ * @memberof EntitiesApiUpdateEntityComputedAttributes
56620
+ */
56621
+ readonly workspaceId: string;
56622
+ /**
56623
+ *
56624
+ * @type {string}
56625
+ * @memberof EntitiesApiUpdateEntityComputedAttributes
56626
+ */
56627
+ readonly objectId: string;
56628
+ /**
56629
+ *
56630
+ * @type {JsonApiComputedAttributeInDocument}
56631
+ * @memberof EntitiesApiUpdateEntityComputedAttributes
56632
+ */
56633
+ readonly jsonApiComputedAttributeInDocument: JsonApiComputedAttributeInDocument;
56634
+ /**
56635
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
56636
+ * @type {string}
56637
+ * @memberof EntitiesApiUpdateEntityComputedAttributes
56638
+ */
56639
+ readonly filter?: string;
56640
+ /**
56641
+ * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
56642
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
56643
+ * @memberof EntitiesApiUpdateEntityComputedAttributes
56644
+ */
56645
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
56646
+ }
56647
+
55943
56648
  /**
55944
56649
  * Request parameters for updateEntityCookieSecurityConfigurations operation in EntitiesApi.
55945
56650
  * @export
@@ -56504,10 +57209,10 @@ export declare interface EntitiesApiUpdateEntityMetricsRequest {
56504
57209
  readonly filter?: string;
56505
57210
  /**
56506
57211
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
56507
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
57212
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
56508
57213
  * @memberof EntitiesApiUpdateEntityMetrics
56509
57214
  */
56510
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
57215
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
56511
57216
  }
56512
57217
 
56513
57218
  /**
@@ -56736,10 +57441,10 @@ export declare interface EntitiesApiUpdateEntityUserDataFiltersRequest {
56736
57441
  readonly filter?: string;
56737
57442
  /**
56738
57443
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
56739
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
57444
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
56740
57445
  * @memberof EntitiesApiUpdateEntityUserDataFilters
56741
57446
  */
56742
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
57447
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
56743
57448
  }
56744
57449
 
56745
57450
  /**
@@ -59701,7 +60406,7 @@ export declare interface ExportIdentifierRefIdentifier {
59701
60406
  'type': ExportIdentifierRefIdentifierTypeEnum;
59702
60407
  }
59703
60408
 
59704
- export declare type ExportIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
60409
+ export declare type ExportIdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'computedAttribute' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
59705
60410
 
59706
60411
  /**
59707
60412
  * Export request object describing the export properties and metadata for image exports.
@@ -66492,7 +67197,7 @@ export declare interface IdentifierRefIdentifier {
66492
67197
  'type': IdentifierRefIdentifierTypeEnum;
66493
67198
  }
66494
67199
 
66495
- export declare type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
67200
+ export declare type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'computedAttribute' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate' | 'workspaceTheme' | 'workspaceColorPalette' | 'fiscalCalendar' | 'fiscalCalendarGranularity';
66496
67201
 
66497
67202
  /**
66498
67203
  * IdentityProviderControllerApi - object-oriented interface
@@ -70198,6 +70903,7 @@ export declare interface JsonApiAttributeOut {
70198
70903
 
70199
70904
  export declare interface JsonApiAttributeOutAttributes {
70200
70905
  'areRelationsValid'?: boolean;
70906
+ 'conditionalFormatting'?: JsonApiAttributeOutAttributesConditionalFormatting | null;
70201
70907
  'description'?: string;
70202
70908
  'granularity'?: JsonApiAttributeOutAttributesGranularityEnum;
70203
70909
  'isHidden'?: boolean;
@@ -70212,6 +70918,20 @@ export declare interface JsonApiAttributeOutAttributes {
70212
70918
  'title'?: string;
70213
70919
  }
70214
70920
 
70921
+ /**
70922
+ * Conditional formatting applied to table columns that render this attribute.
70923
+ */
70924
+ export declare interface JsonApiAttributeOutAttributesConditionalFormatting {
70925
+ /**
70926
+ * Conditions evaluated in order; the first match wins.
70927
+ */
70928
+ 'conditions': Array<ConditionalFormattingCondition>;
70929
+ /**
70930
+ * Whether the conditions are applied when rendering.
70931
+ */
70932
+ 'enabled': boolean;
70933
+ }
70934
+
70215
70935
  export declare type JsonApiAttributeOutAttributesGranularityEnum = 'SECOND' | 'SECOND_OF_MINUTE' | 'SECOND_OF_DAY' | 'MINUTE' | 'MINUTE_OF_HOUR' | 'MINUTE_OF_DAY' | 'HOUR' | 'HOUR_OF_DAY' | 'DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK' | 'WEEK_OF_YEAR' | 'MONTH' | 'MONTH_OF_YEAR' | 'QUARTER' | 'QUARTER_OF_YEAR' | 'YEAR' | 'FISCAL_DAY_OF_FISCAL_WEEK' | 'FISCAL_DAY_OF_FISCAL_MONTH' | 'FISCAL_DAY_OF_FISCAL_QUARTER' | 'FISCAL_DAY_OF_FISCAL_SEMESTER' | 'FISCAL_DAY_OF_FISCAL_YEAR' | 'FISCAL_WEEK' | 'FISCAL_WEEK_OF_FISCAL_MONTH' | 'FISCAL_WEEK_OF_FISCAL_QUARTER' | 'FISCAL_WEEK_OF_FISCAL_SEMESTER' | 'FISCAL_WEEK_OF_FISCAL_YEAR' | 'FISCAL_MONTH' | 'FISCAL_MONTH_OF_FISCAL_QUARTER' | 'FISCAL_MONTH_OF_FISCAL_SEMESTER' | 'FISCAL_MONTH_OF_FISCAL_YEAR' | 'FISCAL_QUARTER' | 'FISCAL_QUARTER_OF_FISCAL_SEMESTER' | 'FISCAL_QUARTER_OF_FISCAL_YEAR' | 'FISCAL_SEMESTER' | 'FISCAL_SEMESTER_OF_FISCAL_YEAR' | 'FISCAL_YEAR';
70216
70936
 
70217
70937
  export declare type JsonApiAttributeOutAttributesSortDirectionEnum = 'ASC' | 'DESC';
@@ -70331,11 +71051,26 @@ export declare interface JsonApiAttributePatch {
70331
71051
  }
70332
71052
 
70333
71053
  export declare interface JsonApiAttributePatchAttributes {
71054
+ 'conditionalFormatting'?: JsonApiAttributePatchAttributesConditionalFormatting | null;
70334
71055
  'description'?: string;
70335
71056
  'tags'?: Array<string>;
70336
71057
  'title'?: string;
70337
71058
  }
70338
71059
 
71060
+ /**
71061
+ * Conditional formatting applied to table columns that render this attribute.
71062
+ */
71063
+ export declare interface JsonApiAttributePatchAttributesConditionalFormatting {
71064
+ /**
71065
+ * Conditions evaluated in order; the first match wins.
71066
+ */
71067
+ 'conditions': Array<ConditionalFormattingCondition>;
71068
+ /**
71069
+ * Whether the conditions are applied when rendering.
71070
+ */
71071
+ 'enabled': boolean;
71072
+ }
71073
+
70339
71074
  export declare interface JsonApiAttributePatchDocument {
70340
71075
  'data': JsonApiAttributePatch;
70341
71076
  }
@@ -71137,6 +71872,387 @@ export declare interface JsonApiColorPalettePatchDocument {
71137
71872
 
71138
71873
  export declare type JsonApiColorPalettePatchTypeEnum = 'colorPalette';
71139
71874
 
71875
+ /**
71876
+ * JSON:API representation of computedAttribute entity.
71877
+ */
71878
+ export declare interface JsonApiComputedAttributeIn {
71879
+ 'attributes': JsonApiComputedAttributeInAttributes;
71880
+ /**
71881
+ * API identifier of an object
71882
+ */
71883
+ 'id': string;
71884
+ /**
71885
+ * Object type
71886
+ */
71887
+ 'type': JsonApiComputedAttributeInTypeEnum;
71888
+ }
71889
+
71890
+ export declare interface JsonApiComputedAttributeInAttributes {
71891
+ 'areRelationsValid'?: boolean;
71892
+ 'content': JsonApiComputedAttributeInAttributesContent;
71893
+ 'dataType'?: JsonApiComputedAttributeInAttributesDataTypeEnum;
71894
+ 'description'?: string;
71895
+ 'isHidden'?: boolean;
71896
+ 'isNullable'?: boolean;
71897
+ 'locale'?: string;
71898
+ 'nullValue'?: string;
71899
+ 'tags'?: Array<string>;
71900
+ 'title'?: string;
71901
+ 'valueType'?: JsonApiComputedAttributeInAttributesValueTypeEnum;
71902
+ }
71903
+
71904
+ export declare interface JsonApiComputedAttributeInAttributesContent {
71905
+ /**
71906
+ * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
71907
+ */
71908
+ 'format'?: string | null;
71909
+ 'maql': string;
71910
+ /**
71911
+ * Categorizes metric semantics (e.g., currency).
71912
+ */
71913
+ 'metricType'?: JsonApiComputedAttributeInAttributesContentMetricTypeEnum;
71914
+ }
71915
+
71916
+ export declare type JsonApiComputedAttributeInAttributesContentMetricTypeEnum = 'UNSPECIFIED' | 'CURRENCY';
71917
+
71918
+ export declare type JsonApiComputedAttributeInAttributesDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
71919
+
71920
+ export declare type JsonApiComputedAttributeInAttributesValueTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' | 'GEO_LONGITUDE' | 'GEO_LATITUDE' | 'GEO_AREA' | 'GEO_ICON' | 'IMAGE' | 'HYPERLOGLOG';
71921
+
71922
+ export declare interface JsonApiComputedAttributeInDocument {
71923
+ 'data': JsonApiComputedAttributeIn;
71924
+ }
71925
+
71926
+ export declare type JsonApiComputedAttributeInTypeEnum = 'computedAttribute';
71927
+
71928
+ /**
71929
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
71930
+ */
71931
+ export declare interface JsonApiComputedAttributeLinkage {
71932
+ 'id': string;
71933
+ 'type': JsonApiComputedAttributeLinkageTypeEnum;
71934
+ }
71935
+
71936
+ export declare type JsonApiComputedAttributeLinkageTypeEnum = 'computedAttribute';
71937
+
71938
+ /**
71939
+ * JSON:API representation of computedAttribute entity.
71940
+ */
71941
+ export declare interface JsonApiComputedAttributeOut {
71942
+ 'attributes': JsonApiComputedAttributeOutAttributes;
71943
+ /**
71944
+ * API identifier of an object
71945
+ */
71946
+ 'id': string;
71947
+ 'meta'?: JsonApiComputedAttributeOutMeta;
71948
+ 'relationships'?: JsonApiComputedAttributeOutRelationships;
71949
+ /**
71950
+ * Object type
71951
+ */
71952
+ 'type': JsonApiComputedAttributeOutTypeEnum;
71953
+ }
71954
+
71955
+ export declare interface JsonApiComputedAttributeOutAttributes {
71956
+ 'areRelationsValid'?: boolean;
71957
+ /**
71958
+ * Certification status of the entity.
71959
+ */
71960
+ 'certification'?: JsonApiComputedAttributeOutAttributesCertificationEnum;
71961
+ /**
71962
+ * Optional message associated with the certification.
71963
+ */
71964
+ 'certificationMessage'?: string | null;
71965
+ /**
71966
+ * Time when the certification was set.
71967
+ */
71968
+ 'certifiedAt'?: string | null;
71969
+ 'content': JsonApiComputedAttributeOutAttributesContent;
71970
+ /**
71971
+ * Time of the entity creation.
71972
+ */
71973
+ 'createdAt'?: string | null;
71974
+ 'dataType'?: JsonApiComputedAttributeOutAttributesDataTypeEnum;
71975
+ 'description'?: string;
71976
+ 'isHidden'?: boolean;
71977
+ 'isNullable'?: boolean;
71978
+ 'locale'?: string;
71979
+ /**
71980
+ * Time of the last entity modification.
71981
+ */
71982
+ 'modifiedAt'?: string | null;
71983
+ 'nullValue'?: string;
71984
+ 'tags'?: Array<string>;
71985
+ 'title'?: string;
71986
+ 'valueType'?: JsonApiComputedAttributeOutAttributesValueTypeEnum;
71987
+ }
71988
+
71989
+ export declare type JsonApiComputedAttributeOutAttributesCertificationEnum = 'CERTIFIED';
71990
+
71991
+ export declare interface JsonApiComputedAttributeOutAttributesContent {
71992
+ /**
71993
+ * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
71994
+ */
71995
+ 'format'?: string | null;
71996
+ 'maql': string;
71997
+ /**
71998
+ * Categorizes metric semantics (e.g., currency).
71999
+ */
72000
+ 'metricType'?: JsonApiComputedAttributeOutAttributesContentMetricTypeEnum;
72001
+ }
72002
+
72003
+ export declare type JsonApiComputedAttributeOutAttributesContentMetricTypeEnum = 'UNSPECIFIED' | 'CURRENCY';
72004
+
72005
+ export declare type JsonApiComputedAttributeOutAttributesDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
72006
+
72007
+ export declare type JsonApiComputedAttributeOutAttributesValueTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' | 'GEO_LONGITUDE' | 'GEO_LATITUDE' | 'GEO_AREA' | 'GEO_ICON' | 'IMAGE' | 'HYPERLOGLOG';
72008
+
72009
+ export declare interface JsonApiComputedAttributeOutDocument {
72010
+ 'data': JsonApiComputedAttributeOut;
72011
+ /**
72012
+ * Included resources
72013
+ */
72014
+ 'included'?: Array<JsonApiComputedAttributeOutIncludes>;
72015
+ 'links'?: ObjectLinks;
72016
+ }
72017
+
72018
+ /**
72019
+ * @type JsonApiComputedAttributeOutIncludes
72020
+ */
72021
+ export declare type JsonApiComputedAttributeOutIncludes = JsonApiAttributeOutWithLinks | JsonApiComputedAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserIdentifierOutWithLinks;
72022
+
72023
+ /**
72024
+ * A JSON:API document with a list of resources
72025
+ */
72026
+ export declare interface JsonApiComputedAttributeOutList {
72027
+ 'data': Array<JsonApiComputedAttributeOutWithLinks>;
72028
+ /**
72029
+ * Included resources
72030
+ */
72031
+ 'included'?: Array<JsonApiComputedAttributeOutIncludes>;
72032
+ 'links'?: ListLinks;
72033
+ 'meta'?: JsonApiComputedAttributeOutListMeta;
72034
+ }
72035
+
72036
+ export declare interface JsonApiComputedAttributeOutListMeta {
72037
+ 'page'?: PageMetadata;
72038
+ }
72039
+
72040
+ export declare interface JsonApiComputedAttributeOutMeta {
72041
+ 'origin'?: JsonApiComputedAttributeOutMetaOrigin;
72042
+ }
72043
+
72044
+ export declare interface JsonApiComputedAttributeOutMetaOrigin {
72045
+ /**
72046
+ * defines id of the workspace where the entity comes from
72047
+ */
72048
+ 'originId': string;
72049
+ /**
72050
+ * defines type of the origin of the entity
72051
+ */
72052
+ 'originType': JsonApiComputedAttributeOutMetaOriginOriginTypeEnum;
72053
+ }
72054
+
72055
+ export declare type JsonApiComputedAttributeOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
72056
+
72057
+ export declare interface JsonApiComputedAttributeOutRelationships {
72058
+ 'attributes'?: JsonApiComputedAttributeOutRelationshipsAttributes;
72059
+ 'certifiedBy'?: JsonApiComputedAttributeOutRelationshipsCertifiedBy;
72060
+ 'computedAttributes'?: JsonApiComputedAttributeOutRelationshipsComputedAttributes;
72061
+ 'createdBy'?: JsonApiComputedAttributeOutRelationshipsCreatedBy;
72062
+ 'datasets'?: JsonApiComputedAttributeOutRelationshipsDatasets;
72063
+ 'facts'?: JsonApiComputedAttributeOutRelationshipsFacts;
72064
+ 'labels'?: JsonApiComputedAttributeOutRelationshipsLabels;
72065
+ 'metrics'?: JsonApiComputedAttributeOutRelationshipsMetrics;
72066
+ 'modifiedBy'?: JsonApiComputedAttributeOutRelationshipsModifiedBy;
72067
+ 'parameters'?: JsonApiComputedAttributeOutRelationshipsParameters;
72068
+ }
72069
+
72070
+ export declare interface JsonApiComputedAttributeOutRelationshipsAttributes {
72071
+ /**
72072
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72073
+ */
72074
+ 'data': Array<JsonApiAttributeLinkage>;
72075
+ }
72076
+
72077
+ export declare interface JsonApiComputedAttributeOutRelationshipsCertifiedBy {
72078
+ 'data': JsonApiUserIdentifierLinkage | null;
72079
+ }
72080
+
72081
+ export declare interface JsonApiComputedAttributeOutRelationshipsComputedAttributes {
72082
+ /**
72083
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72084
+ */
72085
+ 'data': Array<JsonApiComputedAttributeLinkage>;
72086
+ }
72087
+
72088
+ export declare interface JsonApiComputedAttributeOutRelationshipsCreatedBy {
72089
+ 'data': JsonApiUserIdentifierLinkage | null;
72090
+ }
72091
+
72092
+ export declare interface JsonApiComputedAttributeOutRelationshipsDatasets {
72093
+ /**
72094
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72095
+ */
72096
+ 'data': Array<JsonApiDatasetLinkage>;
72097
+ }
72098
+
72099
+ export declare interface JsonApiComputedAttributeOutRelationshipsFacts {
72100
+ /**
72101
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72102
+ */
72103
+ 'data': Array<JsonApiFactLinkage>;
72104
+ }
72105
+
72106
+ export declare interface JsonApiComputedAttributeOutRelationshipsLabels {
72107
+ /**
72108
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72109
+ */
72110
+ 'data': Array<JsonApiLabelLinkage>;
72111
+ }
72112
+
72113
+ export declare interface JsonApiComputedAttributeOutRelationshipsMetrics {
72114
+ /**
72115
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72116
+ */
72117
+ 'data': Array<JsonApiMetricLinkage>;
72118
+ }
72119
+
72120
+ export declare interface JsonApiComputedAttributeOutRelationshipsModifiedBy {
72121
+ 'data': JsonApiUserIdentifierLinkage | null;
72122
+ }
72123
+
72124
+ export declare interface JsonApiComputedAttributeOutRelationshipsParameters {
72125
+ /**
72126
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
72127
+ */
72128
+ 'data': Array<JsonApiParameterLinkage>;
72129
+ }
72130
+
72131
+ export declare type JsonApiComputedAttributeOutTypeEnum = 'computedAttribute';
72132
+
72133
+ export declare interface JsonApiComputedAttributeOutWithLinks {
72134
+ 'attributes': JsonApiComputedAttributeOutAttributes;
72135
+ /**
72136
+ * API identifier of an object
72137
+ */
72138
+ 'id': string;
72139
+ 'meta'?: JsonApiComputedAttributeOutMeta;
72140
+ 'relationships'?: JsonApiComputedAttributeOutRelationships;
72141
+ /**
72142
+ * Object type
72143
+ */
72144
+ 'type': JsonApiComputedAttributeOutWithLinksTypeEnum;
72145
+ 'links'?: ObjectLinks;
72146
+ }
72147
+
72148
+ export declare type JsonApiComputedAttributeOutWithLinksTypeEnum = 'computedAttribute';
72149
+
72150
+ /**
72151
+ * JSON:API representation of patching computedAttribute entity.
72152
+ */
72153
+ export declare interface JsonApiComputedAttributePatch {
72154
+ 'attributes': JsonApiComputedAttributePatchAttributes;
72155
+ /**
72156
+ * API identifier of an object
72157
+ */
72158
+ 'id': string;
72159
+ /**
72160
+ * Object type
72161
+ */
72162
+ 'type': JsonApiComputedAttributePatchTypeEnum;
72163
+ }
72164
+
72165
+ export declare interface JsonApiComputedAttributePatchAttributes {
72166
+ 'areRelationsValid'?: boolean;
72167
+ 'content'?: JsonApiComputedAttributePatchAttributesContent;
72168
+ 'dataType'?: JsonApiComputedAttributePatchAttributesDataTypeEnum;
72169
+ 'description'?: string;
72170
+ 'isHidden'?: boolean;
72171
+ 'isNullable'?: boolean;
72172
+ 'locale'?: string;
72173
+ 'nullValue'?: string;
72174
+ 'tags'?: Array<string>;
72175
+ 'title'?: string;
72176
+ 'valueType'?: JsonApiComputedAttributePatchAttributesValueTypeEnum;
72177
+ }
72178
+
72179
+ export declare interface JsonApiComputedAttributePatchAttributesContent {
72180
+ /**
72181
+ * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
72182
+ */
72183
+ 'format'?: string | null;
72184
+ 'maql': string;
72185
+ /**
72186
+ * Categorizes metric semantics (e.g., currency).
72187
+ */
72188
+ 'metricType'?: JsonApiComputedAttributePatchAttributesContentMetricTypeEnum;
72189
+ }
72190
+
72191
+ export declare type JsonApiComputedAttributePatchAttributesContentMetricTypeEnum = 'UNSPECIFIED' | 'CURRENCY';
72192
+
72193
+ export declare type JsonApiComputedAttributePatchAttributesDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
72194
+
72195
+ export declare type JsonApiComputedAttributePatchAttributesValueTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' | 'GEO_LONGITUDE' | 'GEO_LATITUDE' | 'GEO_AREA' | 'GEO_ICON' | 'IMAGE' | 'HYPERLOGLOG';
72196
+
72197
+ export declare interface JsonApiComputedAttributePatchDocument {
72198
+ 'data': JsonApiComputedAttributePatch;
72199
+ }
72200
+
72201
+ export declare type JsonApiComputedAttributePatchTypeEnum = 'computedAttribute';
72202
+
72203
+ /**
72204
+ * JSON:API representation of computedAttribute entity.
72205
+ */
72206
+ export declare interface JsonApiComputedAttributePostOptionalId {
72207
+ 'attributes': JsonApiComputedAttributePostOptionalIdAttributes;
72208
+ /**
72209
+ * API identifier of an object
72210
+ */
72211
+ 'id'?: string;
72212
+ /**
72213
+ * Object type
72214
+ */
72215
+ 'type': JsonApiComputedAttributePostOptionalIdTypeEnum;
72216
+ }
72217
+
72218
+ export declare interface JsonApiComputedAttributePostOptionalIdAttributes {
72219
+ 'areRelationsValid'?: boolean;
72220
+ 'content': JsonApiComputedAttributePostOptionalIdAttributesContent;
72221
+ 'dataType'?: JsonApiComputedAttributePostOptionalIdAttributesDataTypeEnum;
72222
+ 'description'?: string;
72223
+ 'isHidden'?: boolean;
72224
+ 'isNullable'?: boolean;
72225
+ 'locale'?: string;
72226
+ 'nullValue'?: string;
72227
+ 'tags'?: Array<string>;
72228
+ 'title'?: string;
72229
+ 'valueType'?: JsonApiComputedAttributePostOptionalIdAttributesValueTypeEnum;
72230
+ }
72231
+
72232
+ export declare interface JsonApiComputedAttributePostOptionalIdAttributesContent {
72233
+ /**
72234
+ * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
72235
+ */
72236
+ 'format'?: string | null;
72237
+ 'maql': string;
72238
+ /**
72239
+ * Categorizes metric semantics (e.g., currency).
72240
+ */
72241
+ 'metricType'?: JsonApiComputedAttributePostOptionalIdAttributesContentMetricTypeEnum;
72242
+ }
72243
+
72244
+ export declare type JsonApiComputedAttributePostOptionalIdAttributesContentMetricTypeEnum = 'UNSPECIFIED' | 'CURRENCY';
72245
+
72246
+ export declare type JsonApiComputedAttributePostOptionalIdAttributesDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
72247
+
72248
+ export declare type JsonApiComputedAttributePostOptionalIdAttributesValueTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' | 'GEO_LONGITUDE' | 'GEO_LATITUDE' | 'GEO_AREA' | 'GEO_ICON' | 'IMAGE' | 'HYPERLOGLOG';
72249
+
72250
+ export declare interface JsonApiComputedAttributePostOptionalIdDocument {
72251
+ 'data': JsonApiComputedAttributePostOptionalId;
72252
+ }
72253
+
72254
+ export declare type JsonApiComputedAttributePostOptionalIdTypeEnum = 'computedAttribute';
72255
+
71140
72256
  /**
71141
72257
  * JSON:API representation of cookieSecurityConfiguration entity.
71142
72258
  */
@@ -72192,7 +73308,7 @@ export declare interface JsonApiDataSourceIdentifierOutAttributes {
72192
73308
  'type': JsonApiDataSourceIdentifierOutAttributesTypeEnum;
72193
73309
  }
72194
73310
 
72195
- export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
73311
+ export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72196
73312
 
72197
73313
  export declare interface JsonApiDataSourceIdentifierOutDocument {
72198
73314
  'data': JsonApiDataSourceIdentifierOut;
@@ -72339,7 +73455,7 @@ export declare interface JsonApiDataSourceInAttributesParametersInner {
72339
73455
  'value': string;
72340
73456
  }
72341
73457
 
72342
- export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
73458
+ export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72343
73459
 
72344
73460
  export declare interface JsonApiDataSourceInDocument {
72345
73461
  'data': JsonApiDataSourceIn;
@@ -72441,7 +73557,7 @@ export declare interface JsonApiDataSourceOutAttributesParametersInner {
72441
73557
  'value': string;
72442
73558
  }
72443
73559
 
72444
- export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
73560
+ export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72445
73561
 
72446
73562
  export declare interface JsonApiDataSourceOutDocument {
72447
73563
  'data': JsonApiDataSourceOut;
@@ -72588,7 +73704,7 @@ export declare interface JsonApiDataSourcePatchAttributesParametersInner {
72588
73704
  'value': string;
72589
73705
  }
72590
73706
 
72591
- export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
73707
+ export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72592
73708
 
72593
73709
  export declare interface JsonApiDataSourcePatchDocument {
72594
73710
  'data': JsonApiDataSourcePatch;
@@ -74873,6 +75989,7 @@ export declare interface JsonApiLabelOut {
74873
75989
 
74874
75990
  export declare interface JsonApiLabelOutAttributes {
74875
75991
  'areRelationsValid'?: boolean;
75992
+ 'conditionalFormatting'?: JsonApiLabelOutAttributesConditionalFormatting | null;
74876
75993
  'description'?: string;
74877
75994
  'geoAreaConfig'?: JsonApiLabelOutAttributesGeoAreaConfig;
74878
75995
  'isHidden'?: boolean;
@@ -74888,6 +76005,20 @@ export declare interface JsonApiLabelOutAttributes {
74888
76005
  'valueType'?: JsonApiLabelOutAttributesValueTypeEnum;
74889
76006
  }
74890
76007
 
76008
+ /**
76009
+ * Conditional formatting applied to table columns that render this label, taking precedence over the rules of its attribute. When absent, a primary label falls back to those rules and every other label is left unformatted.
76010
+ */
76011
+ export declare interface JsonApiLabelOutAttributesConditionalFormatting {
76012
+ /**
76013
+ * Conditions evaluated in order; the first match wins.
76014
+ */
76015
+ 'conditions': Array<ConditionalFormattingCondition>;
76016
+ /**
76017
+ * Whether the conditions are applied when rendering.
76018
+ */
76019
+ 'enabled': boolean;
76020
+ }
76021
+
74891
76022
  /**
74892
76023
  * Configuration specific to geo area labels.
74893
76024
  */
@@ -74990,11 +76121,26 @@ export declare interface JsonApiLabelPatch {
74990
76121
  }
74991
76122
 
74992
76123
  export declare interface JsonApiLabelPatchAttributes {
76124
+ 'conditionalFormatting'?: JsonApiLabelPatchAttributesConditionalFormatting | null;
74993
76125
  'description'?: string;
74994
76126
  'tags'?: Array<string>;
74995
76127
  'title'?: string;
74996
76128
  }
74997
76129
 
76130
+ /**
76131
+ * Conditional formatting applied to table columns that render this label, taking precedence over the rules of its attribute. When absent, a primary label falls back to those rules and every other label is left unformatted.
76132
+ */
76133
+ export declare interface JsonApiLabelPatchAttributesConditionalFormatting {
76134
+ /**
76135
+ * Conditions evaluated in order; the first match wins.
76136
+ */
76137
+ 'conditions': Array<ConditionalFormattingCondition>;
76138
+ /**
76139
+ * Whether the conditions are applied when rendering.
76140
+ */
76141
+ 'enabled': boolean;
76142
+ }
76143
+
74998
76144
  export declare interface JsonApiLabelPatchDocument {
74999
76145
  'data': JsonApiLabelPatch;
75000
76146
  }
@@ -75490,6 +76636,7 @@ export declare interface JsonApiMetricIn {
75490
76636
 
75491
76637
  export declare interface JsonApiMetricInAttributes {
75492
76638
  'areRelationsValid'?: boolean;
76639
+ 'conditionalFormatting'?: JsonApiMetricInAttributesConditionalFormatting | null;
75493
76640
  'content': JsonApiMetricInAttributesContent;
75494
76641
  'description'?: string;
75495
76642
  'isHidden'?: boolean;
@@ -75498,6 +76645,20 @@ export declare interface JsonApiMetricInAttributes {
75498
76645
  'title'?: string;
75499
76646
  }
75500
76647
 
76648
+ /**
76649
+ * Conditional formatting inherited by every table column that renders this metric.
76650
+ */
76651
+ export declare interface JsonApiMetricInAttributesConditionalFormatting {
76652
+ /**
76653
+ * Conditions evaluated in order; the first match wins.
76654
+ */
76655
+ 'conditions': Array<ConditionalFormattingCondition>;
76656
+ /**
76657
+ * Whether the conditions are applied when rendering.
76658
+ */
76659
+ 'enabled': boolean;
76660
+ }
76661
+
75501
76662
  export declare interface JsonApiMetricInAttributesContent {
75502
76663
  /**
75503
76664
  * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
@@ -75559,6 +76720,7 @@ export declare interface JsonApiMetricOutAttributes {
75559
76720
  * Time when the certification was set.
75560
76721
  */
75561
76722
  'certifiedAt'?: string | null;
76723
+ 'conditionalFormatting'?: JsonApiMetricOutAttributesConditionalFormatting | null;
75562
76724
  'content': JsonApiMetricOutAttributesContent;
75563
76725
  /**
75564
76726
  * Time of the entity creation.
@@ -75577,6 +76739,20 @@ export declare interface JsonApiMetricOutAttributes {
75577
76739
 
75578
76740
  export declare type JsonApiMetricOutAttributesCertificationEnum = 'CERTIFIED';
75579
76741
 
76742
+ /**
76743
+ * Conditional formatting inherited by every table column that renders this metric.
76744
+ */
76745
+ export declare interface JsonApiMetricOutAttributesConditionalFormatting {
76746
+ /**
76747
+ * Conditions evaluated in order; the first match wins.
76748
+ */
76749
+ 'conditions': Array<ConditionalFormattingCondition>;
76750
+ /**
76751
+ * Whether the conditions are applied when rendering.
76752
+ */
76753
+ 'enabled': boolean;
76754
+ }
76755
+
75580
76756
  export declare interface JsonApiMetricOutAttributesContent {
75581
76757
  /**
75582
76758
  * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
@@ -75596,15 +76772,10 @@ export declare interface JsonApiMetricOutDocument {
75596
76772
  /**
75597
76773
  * Included resources
75598
76774
  */
75599
- 'included'?: Array<JsonApiMetricOutIncludes>;
76775
+ 'included'?: Array<JsonApiComputedAttributeOutIncludes>;
75600
76776
  'links'?: ObjectLinks;
75601
76777
  }
75602
76778
 
75603
- /**
75604
- * @type JsonApiMetricOutIncludes
75605
- */
75606
- export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserIdentifierOutWithLinks;
75607
-
75608
76779
  /**
75609
76780
  * A JSON:API document with a list of resources
75610
76781
  */
@@ -75613,7 +76784,7 @@ export declare interface JsonApiMetricOutList {
75613
76784
  /**
75614
76785
  * Included resources
75615
76786
  */
75616
- 'included'?: Array<JsonApiMetricOutIncludes>;
76787
+ 'included'?: Array<JsonApiComputedAttributeOutIncludes>;
75617
76788
  'links'?: ListLinks;
75618
76789
  'meta'?: JsonApiMetricOutListMeta;
75619
76790
  }
@@ -75642,6 +76813,7 @@ export declare type JsonApiMetricOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PAREN
75642
76813
  export declare interface JsonApiMetricOutRelationships {
75643
76814
  'attributes'?: JsonApiMetricOutRelationshipsAttributes;
75644
76815
  'certifiedBy'?: JsonApiMetricOutRelationshipsCertifiedBy;
76816
+ 'computedAttributes'?: JsonApiMetricOutRelationshipsComputedAttributes;
75645
76817
  'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
75646
76818
  'datasets'?: JsonApiMetricOutRelationshipsDatasets;
75647
76819
  'facts'?: JsonApiMetricOutRelationshipsFacts;
@@ -75662,6 +76834,13 @@ export declare interface JsonApiMetricOutRelationshipsCertifiedBy {
75662
76834
  'data': JsonApiUserIdentifierLinkage | null;
75663
76835
  }
75664
76836
 
76837
+ export declare interface JsonApiMetricOutRelationshipsComputedAttributes {
76838
+ /**
76839
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
76840
+ */
76841
+ 'data': Array<JsonApiComputedAttributeLinkage>;
76842
+ }
76843
+
75665
76844
  export declare interface JsonApiMetricOutRelationshipsCreatedBy {
75666
76845
  'data': JsonApiUserIdentifierLinkage | null;
75667
76846
  }
@@ -75741,6 +76920,7 @@ export declare interface JsonApiMetricPatch {
75741
76920
 
75742
76921
  export declare interface JsonApiMetricPatchAttributes {
75743
76922
  'areRelationsValid'?: boolean;
76923
+ 'conditionalFormatting'?: JsonApiMetricPatchAttributesConditionalFormatting | null;
75744
76924
  'content'?: JsonApiMetricPatchAttributesContent;
75745
76925
  'description'?: string;
75746
76926
  'isHidden'?: boolean;
@@ -75749,6 +76929,20 @@ export declare interface JsonApiMetricPatchAttributes {
75749
76929
  'title'?: string;
75750
76930
  }
75751
76931
 
76932
+ /**
76933
+ * Conditional formatting inherited by every table column that renders this metric.
76934
+ */
76935
+ export declare interface JsonApiMetricPatchAttributesConditionalFormatting {
76936
+ /**
76937
+ * Conditions evaluated in order; the first match wins.
76938
+ */
76939
+ 'conditions': Array<ConditionalFormattingCondition>;
76940
+ /**
76941
+ * Whether the conditions are applied when rendering.
76942
+ */
76943
+ 'enabled': boolean;
76944
+ }
76945
+
75752
76946
  export declare interface JsonApiMetricPatchAttributesContent {
75753
76947
  /**
75754
76948
  * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
@@ -75786,6 +76980,7 @@ export declare interface JsonApiMetricPostOptionalId {
75786
76980
 
75787
76981
  export declare interface JsonApiMetricPostOptionalIdAttributes {
75788
76982
  'areRelationsValid'?: boolean;
76983
+ 'conditionalFormatting'?: JsonApiMetricPostOptionalIdAttributesConditionalFormatting | null;
75789
76984
  'content': JsonApiMetricPostOptionalIdAttributesContent;
75790
76985
  'description'?: string;
75791
76986
  'isHidden'?: boolean;
@@ -75794,6 +76989,20 @@ export declare interface JsonApiMetricPostOptionalIdAttributes {
75794
76989
  'title'?: string;
75795
76990
  }
75796
76991
 
76992
+ /**
76993
+ * Conditional formatting inherited by every table column that renders this metric.
76994
+ */
76995
+ export declare interface JsonApiMetricPostOptionalIdAttributesConditionalFormatting {
76996
+ /**
76997
+ * Conditions evaluated in order; the first match wins.
76998
+ */
76999
+ 'conditions': Array<ConditionalFormattingCondition>;
77000
+ /**
77001
+ * Whether the conditions are applied when rendering.
77002
+ */
77003
+ 'enabled': boolean;
77004
+ }
77005
+
75797
77006
  export declare interface JsonApiMetricPostOptionalIdAttributesContent {
75798
77007
  /**
75799
77008
  * Excel-like format string with optional dynamic tokens. Filter value tokens: [$FILTER:<label_id>] for raw filter value passthrough. Currency tokens: [$CURRENCY:<label_id>] for currency symbol, with optional forms :symbol, :narrow, :code, :name. Locale abbreviations: [$K], [$M], [$B], [$T] for locale-specific scale abbreviations. Tokens are resolved at execution time based on AFM filters and user\'s format locale. Single-value filters only; multi-value filters use fallback values.
@@ -76360,7 +77569,7 @@ export declare interface JsonApiOrganizationSettingInAttributes {
76360
77569
  'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
76361
77570
  }
76362
77571
 
76363
- export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
77572
+ export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
76364
77573
 
76365
77574
  export declare interface JsonApiOrganizationSettingInDocument {
76366
77575
  'data': JsonApiOrganizationSettingIn;
@@ -76391,7 +77600,7 @@ export declare interface JsonApiOrganizationSettingOutAttributes {
76391
77600
  'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
76392
77601
  }
76393
77602
 
76394
- export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
77603
+ export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
76395
77604
 
76396
77605
  export declare interface JsonApiOrganizationSettingOutDocument {
76397
77606
  'data': JsonApiOrganizationSettingOut;
@@ -76451,7 +77660,7 @@ export declare interface JsonApiOrganizationSettingPatchAttributes {
76451
77660
  'type'?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
76452
77661
  }
76453
77662
 
76454
- export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
77663
+ export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
76455
77664
 
76456
77665
  export declare interface JsonApiOrganizationSettingPatchDocument {
76457
77666
  'data': JsonApiOrganizationSettingPatch;
@@ -77088,7 +78297,7 @@ export declare interface JsonApiUserDataFilterOutDocument {
77088
78297
  /**
77089
78298
  * @type JsonApiUserDataFilterOutIncludes
77090
78299
  */
77091
- export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
78300
+ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | JsonApiComputedAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
77092
78301
 
77093
78302
  /**
77094
78303
  * A JSON:API document with a list of resources
@@ -77126,6 +78335,7 @@ export declare type JsonApiUserDataFilterOutMetaOriginOriginTypeEnum = 'NATIVE'
77126
78335
 
77127
78336
  export declare interface JsonApiUserDataFilterOutRelationships {
77128
78337
  'attributes'?: JsonApiUserDataFilterOutRelationshipsAttributes;
78338
+ 'computedAttributes'?: JsonApiUserDataFilterOutRelationshipsComputedAttributes;
77129
78339
  'datasets'?: JsonApiUserDataFilterOutRelationshipsDatasets;
77130
78340
  'facts'?: JsonApiUserDataFilterOutRelationshipsFacts;
77131
78341
  'labels'?: JsonApiUserDataFilterOutRelationshipsLabels;
@@ -77142,6 +78352,13 @@ export declare interface JsonApiUserDataFilterOutRelationshipsAttributes {
77142
78352
  'data': Array<JsonApiAttributeLinkage>;
77143
78353
  }
77144
78354
 
78355
+ export declare interface JsonApiUserDataFilterOutRelationshipsComputedAttributes {
78356
+ /**
78357
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
78358
+ */
78359
+ 'data': Array<JsonApiComputedAttributeLinkage>;
78360
+ }
78361
+
77145
78362
  export declare interface JsonApiUserDataFilterOutRelationshipsDatasets {
77146
78363
  /**
77147
78364
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -77718,7 +78935,7 @@ export declare interface JsonApiUserSettingInAttributes {
77718
78935
  'type'?: JsonApiUserSettingInAttributesTypeEnum;
77719
78936
  }
77720
78937
 
77721
- export declare type JsonApiUserSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
78938
+ export declare type JsonApiUserSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
77722
78939
 
77723
78940
  export declare interface JsonApiUserSettingInDocument {
77724
78941
  'data': JsonApiUserSettingIn;
@@ -77749,7 +78966,7 @@ export declare interface JsonApiUserSettingOutAttributes {
77749
78966
  'type'?: JsonApiUserSettingOutAttributesTypeEnum;
77750
78967
  }
77751
78968
 
77752
- export declare type JsonApiUserSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
78969
+ export declare type JsonApiUserSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
77753
78970
 
77754
78971
  export declare interface JsonApiUserSettingOutDocument {
77755
78972
  'data': JsonApiUserSettingOut;
@@ -77803,6 +79020,7 @@ export declare interface JsonApiVisualizationObjectIn {
77803
79020
 
77804
79021
  export declare interface JsonApiVisualizationObjectInAttributes {
77805
79022
  'areRelationsValid'?: boolean;
79023
+ 'conditionalFormatting'?: JsonApiVisualizationObjectInAttributesConditionalFormatting | null;
77806
79024
  /**
77807
79025
  * Free-form JSON content. Maximum supported length is 250000 characters.
77808
79026
  */
@@ -77813,6 +79031,20 @@ export declare interface JsonApiVisualizationObjectInAttributes {
77813
79031
  'title'?: string;
77814
79032
  }
77815
79033
 
79034
+ /**
79035
+ * Conditional formatting applied when this visualization is rendered.
79036
+ */
79037
+ export declare interface JsonApiVisualizationObjectInAttributesConditionalFormatting {
79038
+ /**
79039
+ * Whether the rules are applied when rendering.
79040
+ */
79041
+ 'enabled': boolean;
79042
+ /**
79043
+ * Rules evaluated in order; within a target, the first matching condition wins.
79044
+ */
79045
+ 'rules': Array<ConditionalFormattingRule>;
79046
+ }
79047
+
77816
79048
  export declare interface JsonApiVisualizationObjectInDocument {
77817
79049
  'data': JsonApiVisualizationObjectIn;
77818
79050
  }
@@ -77860,6 +79092,7 @@ export declare interface JsonApiVisualizationObjectOutAttributes {
77860
79092
  * Time when the certification was set.
77861
79093
  */
77862
79094
  'certifiedAt'?: string | null;
79095
+ 'conditionalFormatting'?: JsonApiVisualizationObjectOutAttributesConditionalFormatting | null;
77863
79096
  /**
77864
79097
  * Free-form JSON content. Maximum supported length is 250000 characters.
77865
79098
  */
@@ -77880,15 +79113,34 @@ export declare interface JsonApiVisualizationObjectOutAttributes {
77880
79113
 
77881
79114
  export declare type JsonApiVisualizationObjectOutAttributesCertificationEnum = 'CERTIFIED';
77882
79115
 
79116
+ /**
79117
+ * Conditional formatting applied when this visualization is rendered.
79118
+ */
79119
+ export declare interface JsonApiVisualizationObjectOutAttributesConditionalFormatting {
79120
+ /**
79121
+ * Whether the rules are applied when rendering.
79122
+ */
79123
+ 'enabled': boolean;
79124
+ /**
79125
+ * Rules evaluated in order; within a target, the first matching condition wins.
79126
+ */
79127
+ 'rules': Array<ConditionalFormattingRule>;
79128
+ }
79129
+
77883
79130
  export declare interface JsonApiVisualizationObjectOutDocument {
77884
79131
  'data': JsonApiVisualizationObjectOut;
77885
79132
  /**
77886
79133
  * Included resources
77887
79134
  */
77888
- 'included'?: Array<JsonApiMetricOutIncludes>;
79135
+ 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
77889
79136
  'links'?: ObjectLinks;
77890
79137
  }
77891
79138
 
79139
+ /**
79140
+ * @type JsonApiVisualizationObjectOutIncludes
79141
+ */
79142
+ export declare type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserIdentifierOutWithLinks;
79143
+
77892
79144
  /**
77893
79145
  * A JSON:API document with a list of resources
77894
79146
  */
@@ -77897,7 +79149,7 @@ export declare interface JsonApiVisualizationObjectOutList {
77897
79149
  /**
77898
79150
  * Included resources
77899
79151
  */
77900
- 'included'?: Array<JsonApiMetricOutIncludes>;
79152
+ 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
77901
79153
  'links'?: ListLinks;
77902
79154
  'meta'?: JsonApiVisualizationObjectOutListMeta;
77903
79155
  }
@@ -78025,6 +79277,7 @@ export declare interface JsonApiVisualizationObjectPatch {
78025
79277
 
78026
79278
  export declare interface JsonApiVisualizationObjectPatchAttributes {
78027
79279
  'areRelationsValid'?: boolean;
79280
+ 'conditionalFormatting'?: JsonApiVisualizationObjectPatchAttributesConditionalFormatting | null;
78028
79281
  /**
78029
79282
  * Free-form JSON content. Maximum supported length is 250000 characters.
78030
79283
  */
@@ -78035,6 +79288,20 @@ export declare interface JsonApiVisualizationObjectPatchAttributes {
78035
79288
  'title'?: string;
78036
79289
  }
78037
79290
 
79291
+ /**
79292
+ * Conditional formatting applied when this visualization is rendered.
79293
+ */
79294
+ export declare interface JsonApiVisualizationObjectPatchAttributesConditionalFormatting {
79295
+ /**
79296
+ * Whether the rules are applied when rendering.
79297
+ */
79298
+ 'enabled': boolean;
79299
+ /**
79300
+ * Rules evaluated in order; within a target, the first matching condition wins.
79301
+ */
79302
+ 'rules': Array<ConditionalFormattingRule>;
79303
+ }
79304
+
78038
79305
  export declare interface JsonApiVisualizationObjectPatchDocument {
78039
79306
  'data': JsonApiVisualizationObjectPatch;
78040
79307
  }
@@ -78058,6 +79325,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
78058
79325
 
78059
79326
  export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
78060
79327
  'areRelationsValid'?: boolean;
79328
+ 'conditionalFormatting'?: JsonApiVisualizationObjectPostOptionalIdAttributesConditionalFormatting | null;
78061
79329
  /**
78062
79330
  * Free-form JSON content. Maximum supported length is 250000 characters.
78063
79331
  */
@@ -78068,6 +79336,20 @@ export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
78068
79336
  'title'?: string;
78069
79337
  }
78070
79338
 
79339
+ /**
79340
+ * Conditional formatting applied when this visualization is rendered.
79341
+ */
79342
+ export declare interface JsonApiVisualizationObjectPostOptionalIdAttributesConditionalFormatting {
79343
+ /**
79344
+ * Whether the rules are applied when rendering.
79345
+ */
79346
+ 'enabled': boolean;
79347
+ /**
79348
+ * Rules evaluated in order; within a target, the first matching condition wins.
79349
+ */
79350
+ 'rules': Array<ConditionalFormattingRule>;
79351
+ }
79352
+
78071
79353
  export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
78072
79354
  'data': JsonApiVisualizationObjectPostOptionalId;
78073
79355
  }
@@ -79384,7 +80666,7 @@ export declare interface JsonApiWorkspaceSettingInAttributes {
79384
80666
  'type'?: JsonApiWorkspaceSettingInAttributesTypeEnum;
79385
80667
  }
79386
80668
 
79387
- export declare type JsonApiWorkspaceSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
80669
+ export declare type JsonApiWorkspaceSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
79388
80670
 
79389
80671
  export declare interface JsonApiWorkspaceSettingInDocument {
79390
80672
  'data': JsonApiWorkspaceSettingIn;
@@ -79416,7 +80698,7 @@ export declare interface JsonApiWorkspaceSettingOutAttributes {
79416
80698
  'type'?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
79417
80699
  }
79418
80700
 
79419
- export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
80701
+ export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
79420
80702
 
79421
80703
  export declare interface JsonApiWorkspaceSettingOutDocument {
79422
80704
  'data': JsonApiWorkspaceSettingOut;
@@ -79494,7 +80776,7 @@ export declare interface JsonApiWorkspaceSettingPatchAttributes {
79494
80776
  'type'?: JsonApiWorkspaceSettingPatchAttributesTypeEnum;
79495
80777
  }
79496
80778
 
79497
- export declare type JsonApiWorkspaceSettingPatchAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
80779
+ export declare type JsonApiWorkspaceSettingPatchAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
79498
80780
 
79499
80781
  export declare interface JsonApiWorkspaceSettingPatchDocument {
79500
80782
  'data': JsonApiWorkspaceSettingPatch;
@@ -79525,7 +80807,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
79525
80807
  'type'?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
79526
80808
  }
79527
80809
 
79528
- export declare type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
80810
+ export declare type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
79529
80811
 
79530
80812
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
79531
80813
  'data': JsonApiWorkspaceSettingPostOptionalId;
@@ -88447,13 +89729,13 @@ export declare function MetricControllerApi_UpdateEntityMetrics(axios: AxiosInst
88447
89729
  * @summary Post Metrics
88448
89730
  * @param {string} workspaceId
88449
89731
  * @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
88450
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89732
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88451
89733
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
88452
89734
  * @param {*} [options] Override http request option.
88453
89735
  * @param {Configuration} [configuration] Optional configuration.
88454
89736
  * @throws {RequiredError}
88455
89737
  */
88456
- export declare function MetricControllerApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89738
+ export declare function MetricControllerApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
88457
89739
 
88458
89740
  /**
88459
89741
  *
@@ -88472,7 +89754,7 @@ export declare function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics
88472
89754
  * @param {string} workspaceId
88473
89755
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
88474
89756
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
88475
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89757
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88476
89758
  * @param {number} [page] Zero-based page index (0..N)
88477
89759
  * @param {number} [size] The size of the page to be returned
88478
89760
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -88482,7 +89764,7 @@ export declare function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics
88482
89764
  * @param {Configuration} [configuration] Optional configuration.
88483
89765
  * @throws {RequiredError}
88484
89766
  */
88485
- export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89767
+ export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
88486
89768
 
88487
89769
  /**
88488
89770
  *
@@ -88490,14 +89772,14 @@ export declare function MetricControllerApiAxiosParamCreator_GetAllEntitiesMetri
88490
89772
  * @param {string} workspaceId
88491
89773
  * @param {string} objectId
88492
89774
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
88493
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89775
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88494
89776
  * @param {boolean} [xGDCVALIDATERELATIONS]
88495
89777
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
88496
89778
  * @param {*} [options] Override http request option.
88497
89779
  * @param {Configuration} [configuration] Optional configuration.
88498
89780
  * @throws {RequiredError}
88499
89781
  */
88500
- export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89782
+ export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
88501
89783
 
88502
89784
  /**
88503
89785
  *
@@ -88506,12 +89788,12 @@ export declare function MetricControllerApiAxiosParamCreator_GetEntityMetrics(wo
88506
89788
  * @param {string} objectId
88507
89789
  * @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
88508
89790
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
88509
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89791
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88510
89792
  * @param {*} [options] Override http request option.
88511
89793
  * @param {Configuration} [configuration] Optional configuration.
88512
89794
  * @throws {RequiredError}
88513
89795
  */
88514
- export declare function MetricControllerApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89796
+ export declare function MetricControllerApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
88515
89797
 
88516
89798
  /**
88517
89799
  *
@@ -88533,12 +89815,12 @@ export declare function MetricControllerApiAxiosParamCreator_SearchEntitiesMetri
88533
89815
  * @param {string} objectId
88534
89816
  * @param {JsonApiMetricInDocument} jsonApiMetricInDocument
88535
89817
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
88536
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89818
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88537
89819
  * @param {*} [options] Override http request option.
88538
89820
  * @param {Configuration} [configuration] Optional configuration.
88539
89821
  * @throws {RequiredError}
88540
89822
  */
88541
- export declare function MetricControllerApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89823
+ export declare function MetricControllerApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
88542
89824
 
88543
89825
  /**
88544
89826
  * Request parameters for createEntityMetrics operation in MetricControllerApi.
@@ -88560,10 +89842,10 @@ export declare interface MetricControllerApiCreateEntityMetricsRequest {
88560
89842
  readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
88561
89843
  /**
88562
89844
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88563
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89845
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
88564
89846
  * @memberof MetricControllerApiCreateEntityMetrics
88565
89847
  */
88566
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89848
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
88567
89849
  /**
88568
89850
  * Include Meta objects.
88569
89851
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -88618,10 +89900,10 @@ export declare interface MetricControllerApiGetAllEntitiesMetricsRequest {
88618
89900
  readonly filter?: string;
88619
89901
  /**
88620
89902
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88621
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89903
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
88622
89904
  * @memberof MetricControllerApiGetAllEntitiesMetrics
88623
89905
  */
88624
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89906
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
88625
89907
  /**
88626
89908
  * Zero-based page index (0..N)
88627
89909
  * @type {number}
@@ -88680,10 +89962,10 @@ export declare interface MetricControllerApiGetEntityMetricsRequest {
88680
89962
  readonly filter?: string;
88681
89963
  /**
88682
89964
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88683
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89965
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
88684
89966
  * @memberof MetricControllerApiGetEntityMetrics
88685
89967
  */
88686
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89968
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
88687
89969
  /**
88688
89970
  *
88689
89971
  * @type {boolean}
@@ -88801,10 +90083,10 @@ export declare interface MetricControllerApiPatchEntityMetricsRequest {
88801
90083
  readonly filter?: string;
88802
90084
  /**
88803
90085
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88804
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90086
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
88805
90087
  * @memberof MetricControllerApiPatchEntityMetrics
88806
90088
  */
88807
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90089
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
88808
90090
  }
88809
90091
 
88810
90092
  /**
@@ -88871,10 +90153,10 @@ export declare interface MetricControllerApiUpdateEntityMetricsRequest {
88871
90153
  readonly filter?: string;
88872
90154
  /**
88873
90155
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
88874
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90156
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
88875
90157
  * @memberof MetricControllerApiUpdateEntityMetrics
88876
90158
  */
88877
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90159
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
88878
90160
  }
88879
90161
 
88880
90162
  /**
@@ -89090,13 +90372,13 @@ export declare function MetricsApi_UpdateEntityMetrics(axios: AxiosInstance, bas
89090
90372
  * @summary Post Metrics
89091
90373
  * @param {string} workspaceId
89092
90374
  * @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
89093
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90375
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89094
90376
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
89095
90377
  * @param {*} [options] Override http request option.
89096
90378
  * @param {Configuration} [configuration] Optional configuration.
89097
90379
  * @throws {RequiredError}
89098
90380
  */
89099
- export declare function MetricsApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
90381
+ export declare function MetricsApiAxiosParamCreator_CreateEntityMetrics(workspaceId: string, jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89100
90382
 
89101
90383
  /**
89102
90384
  *
@@ -89115,7 +90397,7 @@ export declare function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspac
89115
90397
  * @param {string} workspaceId
89116
90398
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
89117
90399
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
89118
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90400
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89119
90401
  * @param {number} [page] Zero-based page index (0..N)
89120
90402
  * @param {number} [size] The size of the page to be returned
89121
90403
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -89125,7 +90407,7 @@ export declare function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspac
89125
90407
  * @param {Configuration} [configuration] Optional configuration.
89126
90408
  * @throws {RequiredError}
89127
90409
  */
89128
- export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
90410
+ export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89129
90411
 
89130
90412
  /**
89131
90413
  *
@@ -89133,14 +90415,14 @@ export declare function MetricsApiAxiosParamCreator_GetAllEntitiesMetrics(worksp
89133
90415
  * @param {string} workspaceId
89134
90416
  * @param {string} objectId
89135
90417
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
89136
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90418
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89137
90419
  * @param {boolean} [xGDCVALIDATERELATIONS]
89138
90420
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
89139
90421
  * @param {*} [options] Override http request option.
89140
90422
  * @param {Configuration} [configuration] Optional configuration.
89141
90423
  * @throws {RequiredError}
89142
90424
  */
89143
- export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
90425
+ export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89144
90426
 
89145
90427
  /**
89146
90428
  *
@@ -89149,12 +90431,12 @@ export declare function MetricsApiAxiosParamCreator_GetEntityMetrics(workspaceId
89149
90431
  * @param {string} objectId
89150
90432
  * @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
89151
90433
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
89152
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90434
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89153
90435
  * @param {*} [options] Override http request option.
89154
90436
  * @param {Configuration} [configuration] Optional configuration.
89155
90437
  * @throws {RequiredError}
89156
90438
  */
89157
- export declare function MetricsApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
90439
+ export declare function MetricsApiAxiosParamCreator_PatchEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricPatchDocument: JsonApiMetricPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89158
90440
 
89159
90441
  /**
89160
90442
  *
@@ -89176,12 +90458,12 @@ export declare function MetricsApiAxiosParamCreator_SearchEntitiesMetrics(worksp
89176
90458
  * @param {string} objectId
89177
90459
  * @param {JsonApiMetricInDocument} jsonApiMetricInDocument
89178
90460
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
89179
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
90461
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89180
90462
  * @param {*} [options] Override http request option.
89181
90463
  * @param {Configuration} [configuration] Optional configuration.
89182
90464
  * @throws {RequiredError}
89183
90465
  */
89184
- export declare function MetricsApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
90466
+ export declare function MetricsApiAxiosParamCreator_UpdateEntityMetrics(workspaceId: string, objectId: string, jsonApiMetricInDocument: JsonApiMetricInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
89185
90467
 
89186
90468
  /**
89187
90469
  * Request parameters for createEntityMetrics operation in MetricsApi.
@@ -89203,10 +90485,10 @@ export declare interface MetricsApiCreateEntityMetricsRequest {
89203
90485
  readonly jsonApiMetricPostOptionalIdDocument: JsonApiMetricPostOptionalIdDocument;
89204
90486
  /**
89205
90487
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89206
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90488
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89207
90489
  * @memberof MetricsApiCreateEntityMetrics
89208
90490
  */
89209
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90491
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89210
90492
  /**
89211
90493
  * Include Meta objects.
89212
90494
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -89261,10 +90543,10 @@ export declare interface MetricsApiGetAllEntitiesMetricsRequest {
89261
90543
  readonly filter?: string;
89262
90544
  /**
89263
90545
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89264
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90546
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89265
90547
  * @memberof MetricsApiGetAllEntitiesMetrics
89266
90548
  */
89267
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90549
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89268
90550
  /**
89269
90551
  * Zero-based page index (0..N)
89270
90552
  * @type {number}
@@ -89323,10 +90605,10 @@ export declare interface MetricsApiGetEntityMetricsRequest {
89323
90605
  readonly filter?: string;
89324
90606
  /**
89325
90607
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89326
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90608
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89327
90609
  * @memberof MetricsApiGetEntityMetrics
89328
90610
  */
89329
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90611
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89330
90612
  /**
89331
90613
  *
89332
90614
  * @type {boolean}
@@ -89444,10 +90726,10 @@ export declare interface MetricsApiPatchEntityMetricsRequest {
89444
90726
  readonly filter?: string;
89445
90727
  /**
89446
90728
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89447
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90729
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89448
90730
  * @memberof MetricsApiPatchEntityMetrics
89449
90731
  */
89450
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90732
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89451
90733
  }
89452
90734
 
89453
90735
  /**
@@ -89514,10 +90796,10 @@ export declare interface MetricsApiUpdateEntityMetricsRequest {
89514
90796
  readonly filter?: string;
89515
90797
  /**
89516
90798
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
89517
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
90799
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
89518
90800
  * @memberof MetricsApiUpdateEntityMetrics
89519
90801
  */
89520
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
90802
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
89521
90803
  }
89522
90804
 
89523
90805
  export declare type MetricTypeEnum = 'metric' | 'fact' | 'attribute';
@@ -91131,6 +92413,20 @@ export declare interface NumberParameterDefinition {
91131
92413
 
91132
92414
  export declare type NumberParameterDefinitionTypeEnum = 'NUMBER';
91133
92415
 
92416
+ /**
92417
+ * Conditional formatting inherited by every table column that renders this object.
92418
+ */
92419
+ export declare interface ObjectConditionalFormatting {
92420
+ /**
92421
+ * Conditions evaluated in order; the first match wins.
92422
+ */
92423
+ 'conditions': Array<ConditionalFormattingCondition>;
92424
+ /**
92425
+ * Whether the conditions are applied when rendering.
92426
+ */
92427
+ 'enabled': boolean;
92428
+ }
92429
+
91134
92430
  export declare interface ObjectLinks {
91135
92431
  /**
91136
92432
  * A string containing the link\'s URL.
@@ -97277,7 +98573,7 @@ export declare interface ResolvedSetting {
97277
98573
  'type'?: ResolvedSettingTypeEnum;
97278
98574
  }
97279
98575
 
97280
- export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
98576
+ export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'ENABLE_NULL_JOINS' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE' | 'ENABLE_TIMEZONE_CHANGE';
97281
98577
 
97282
98578
  /**
97283
98579
  * A request containing setting IDs to resolve.
@@ -98323,7 +99619,7 @@ export declare interface SetCertificationRequest {
98323
99619
 
98324
99620
  export declare type SetCertificationRequestStatusEnum = 'CERTIFIED';
98325
99621
 
98326
- export declare type SetCertificationRequestTypeEnum = 'metric' | 'visualizationObject' | 'analyticalDashboard';
99622
+ export declare type SetCertificationRequestTypeEnum = 'metric' | 'visualizationObject' | 'analyticalDashboard' | 'computedAttribute';
98327
99623
 
98328
99624
  /**
98329
99625
  * This function sets global API token to send in Authorization header on all API calls done by axios. If the token is
@@ -99329,7 +100625,7 @@ export declare interface TestDefinitionRequest {
99329
100625
 
99330
100626
  export declare type TestDefinitionRequestAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
99331
100627
 
99332
- export declare type TestDefinitionRequestTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
100628
+ export declare type TestDefinitionRequestTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
99333
100629
 
99334
100630
  export declare interface TestLlmProviderByIdRequest {
99335
100631
  /**
@@ -101078,13 +102374,13 @@ export declare function UserDataFilterControllerApi_UpdateEntityUserDataFilters(
101078
102374
  * @summary Post User Data Filters
101079
102375
  * @param {string} workspaceId
101080
102376
  * @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
101081
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
102377
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101082
102378
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
101083
102379
  * @param {*} [options] Override http request option.
101084
102380
  * @param {Configuration} [configuration] Optional configuration.
101085
102381
  * @throws {RequiredError}
101086
102382
  */
101087
- export declare function UserDataFilterControllerApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
102383
+ export declare function UserDataFilterControllerApiAxiosParamCreator_CreateEntityUserDataFilters(workspaceId: string, jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
101088
102384
 
101089
102385
  /**
101090
102386
  *
@@ -101103,7 +102399,7 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_DeleteEntit
101103
102399
  * @param {string} workspaceId
101104
102400
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
101105
102401
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
101106
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
102402
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101107
102403
  * @param {number} [page] Zero-based page index (0..N)
101108
102404
  * @param {number} [size] The size of the page to be returned
101109
102405
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -101113,7 +102409,7 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_DeleteEntit
101113
102409
  * @param {Configuration} [configuration] Optional configuration.
101114
102410
  * @throws {RequiredError}
101115
102411
  */
101116
- export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
102412
+ export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntitiesUserDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
101117
102413
 
101118
102414
  /**
101119
102415
  *
@@ -101121,14 +102417,14 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_GetAllEntit
101121
102417
  * @param {string} workspaceId
101122
102418
  * @param {string} objectId
101123
102419
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
101124
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
102420
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101125
102421
  * @param {boolean} [xGDCVALIDATERELATIONS]
101126
102422
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
101127
102423
  * @param {*} [options] Override http request option.
101128
102424
  * @param {Configuration} [configuration] Optional configuration.
101129
102425
  * @throws {RequiredError}
101130
102426
  */
101131
- export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
102427
+ export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUserDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
101132
102428
 
101133
102429
  /**
101134
102430
  *
@@ -101137,12 +102433,12 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_GetEntityUs
101137
102433
  * @param {string} objectId
101138
102434
  * @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
101139
102435
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
101140
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
102436
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101141
102437
  * @param {*} [options] Override http request option.
101142
102438
  * @param {Configuration} [configuration] Optional configuration.
101143
102439
  * @throws {RequiredError}
101144
102440
  */
101145
- export declare function UserDataFilterControllerApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
102441
+ export declare function UserDataFilterControllerApiAxiosParamCreator_PatchEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterPatchDocument: JsonApiUserDataFilterPatchDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
101146
102442
 
101147
102443
  /**
101148
102444
  *
@@ -101164,12 +102460,12 @@ export declare function UserDataFilterControllerApiAxiosParamCreator_SearchEntit
101164
102460
  * @param {string} objectId
101165
102461
  * @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
101166
102462
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
101167
- * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
102463
+ * @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101168
102464
  * @param {*} [options] Override http request option.
101169
102465
  * @param {Configuration} [configuration] Optional configuration.
101170
102466
  * @throws {RequiredError}
101171
102467
  */
101172
- export declare function UserDataFilterControllerApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
102468
+ export declare function UserDataFilterControllerApiAxiosParamCreator_UpdateEntityUserDataFilters(workspaceId: string, objectId: string, jsonApiUserDataFilterInDocument: JsonApiUserDataFilterInDocument, filter?: string, include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
101173
102469
 
101174
102470
  /**
101175
102471
  * Request parameters for createEntityUserDataFilters operation in UserDataFilterControllerApi.
@@ -101191,10 +102487,10 @@ export declare interface UserDataFilterControllerApiCreateEntityUserDataFiltersR
101191
102487
  readonly jsonApiUserDataFilterPostOptionalIdDocument: JsonApiUserDataFilterPostOptionalIdDocument;
101192
102488
  /**
101193
102489
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101194
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
102490
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
101195
102491
  * @memberof UserDataFilterControllerApiCreateEntityUserDataFilters
101196
102492
  */
101197
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
102493
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
101198
102494
  /**
101199
102495
  * Include Meta objects.
101200
102496
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -101249,10 +102545,10 @@ export declare interface UserDataFilterControllerApiGetAllEntitiesUserDataFilter
101249
102545
  readonly filter?: string;
101250
102546
  /**
101251
102547
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101252
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
102548
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
101253
102549
  * @memberof UserDataFilterControllerApiGetAllEntitiesUserDataFilters
101254
102550
  */
101255
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
102551
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
101256
102552
  /**
101257
102553
  * Zero-based page index (0..N)
101258
102554
  * @type {number}
@@ -101311,10 +102607,10 @@ export declare interface UserDataFilterControllerApiGetEntityUserDataFiltersRequ
101311
102607
  readonly filter?: string;
101312
102608
  /**
101313
102609
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101314
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
102610
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
101315
102611
  * @memberof UserDataFilterControllerApiGetEntityUserDataFilters
101316
102612
  */
101317
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
102613
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
101318
102614
  /**
101319
102615
  *
101320
102616
  * @type {boolean}
@@ -101432,10 +102728,10 @@ export declare interface UserDataFilterControllerApiPatchEntityUserDataFiltersRe
101432
102728
  readonly filter?: string;
101433
102729
  /**
101434
102730
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101435
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
102731
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
101436
102732
  * @memberof UserDataFilterControllerApiPatchEntityUserDataFilters
101437
102733
  */
101438
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
102734
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
101439
102735
  }
101440
102736
 
101441
102737
  /**
@@ -101502,10 +102798,10 @@ export declare interface UserDataFilterControllerApiUpdateEntityUserDataFiltersR
101502
102798
  readonly filter?: string;
101503
102799
  /**
101504
102800
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
101505
- * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
102801
+ * @type {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>}
101506
102802
  * @memberof UserDataFilterControllerApiUpdateEntityUserDataFilters
101507
102803
  */
101508
- readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
102804
+ readonly include?: Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>;
101509
102805
  }
101510
102806
 
101511
102807
  /**