@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1014,7 +1014,7 @@ declare interface ActionsApiChangeAnalysisRequest {
1014
1014
  * @type {ChangeAnalysisRequest}
1015
1015
  * @memberof ActionsApiChangeAnalysis
1016
1016
  */
1017
- readonly changeAnalysisRequest: ChangeAnalysisRequest;
1017
+ readonly changeAnalysisRequest: AfmChangeAnalysisRequest;
1018
1018
  }
1019
1019
 
1020
1020
  /**
@@ -2870,6 +2870,20 @@ export declare interface ActionsApiManageWorkspacePermissionsRequest {
2870
2870
  readonly workspacePermissionAssignment: Array<WorkspacePermissionAssignment>;
2871
2871
  }
2872
2872
 
2873
+ /**
2874
+ * Request parameters for memoryCreatedByUsers operation in ActionsApi.
2875
+ * @export
2876
+ * @interface ActionsApiMemoryCreatedByUsersRequest
2877
+ */
2878
+ declare interface ActionsApiMemoryCreatedByUsersRequest {
2879
+ /**
2880
+ * Workspace identifier
2881
+ * @type {string}
2882
+ * @memberof ActionsApiMemoryCreatedByUsers
2883
+ */
2884
+ readonly workspaceId: string;
2885
+ }
2886
+
2873
2887
  /**
2874
2888
  * Request parameters for metadataSync operation in ActionsApi.
2875
2889
  * @export
@@ -5099,7 +5113,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5099
5113
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmValidObjectsResponse, any, {}>>;
5100
5114
  /**
5101
5115
  * Returns a list of Users who created any object for this workspace
5102
- * @summary Get Analytics Catalog CreatedBy
5116
+ * @summary Get Analytics Catalog CreatedBy Users
5103
5117
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
5104
5118
  * @param {*} [options] Override http request option.
5105
5119
  * @throws {RequiredError}
@@ -5169,6 +5183,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5169
5183
  * @memberof ActionsApi
5170
5184
  */
5171
5185
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<KeyDriversResult, any, {}>>;
5186
+ /**
5187
+ * Returns a list of Users who created any memory item for this workspace
5188
+ * @summary Get AI Memory CreatedBy Users
5189
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
5190
+ * @param {*} [options] Override http request option.
5191
+ * @throws {RequiredError}
5192
+ * @memberof ActionsApi
5193
+ */
5194
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmMemoryItemCreatedByUsers, any, {}>>;
5172
5195
  /**
5173
5196
  * Returns a list of available LLM Endpoints
5174
5197
  * @summary Get Active LLM Endpoints for this workspace
@@ -5322,7 +5345,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5322
5345
  * @param {*} [options] Override http request option.
5323
5346
  * @throws {RequiredError}
5324
5347
  */
5325
- changeAnalysis: (workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5348
+ changeAnalysis: (workspaceId: string, changeAnalysisRequest: AfmChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5326
5349
  /**
5327
5350
  * Gets change analysis result.
5328
5351
  * @summary Get change analysis result
@@ -5397,7 +5420,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5397
5420
  computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5398
5421
  /**
5399
5422
  * Returns a list of Users who created any object for this workspace
5400
- * @summary Get Analytics Catalog CreatedBy
5423
+ * @summary Get Analytics Catalog CreatedBy Users
5401
5424
  * @param {string} workspaceId Workspace identifier
5402
5425
  * @param {*} [options] Override http request option.
5403
5426
  * @throws {RequiredError}
@@ -5473,6 +5496,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5473
5496
  * @throws {RequiredError}
5474
5497
  */
5475
5498
  keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5499
+ /**
5500
+ * Returns a list of Users who created any memory item for this workspace
5501
+ * @summary Get AI Memory CreatedBy Users
5502
+ * @param {string} workspaceId Workspace identifier
5503
+ * @param {*} [options] Override http request option.
5504
+ * @throws {RequiredError}
5505
+ */
5506
+ memoryCreatedByUsers: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5476
5507
  /**
5477
5508
  * Returns a list of available LLM Endpoints
5478
5509
  * @summary Get Active LLM Endpoints for this workspace
@@ -5673,7 +5704,7 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5673
5704
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
5674
5705
  /**
5675
5706
  * Returns a list of Users who created any object for this workspace
5676
- * @summary Get Analytics Catalog CreatedBy
5707
+ * @summary Get Analytics Catalog CreatedBy Users
5677
5708
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
5678
5709
  * @param {*} [options] Override http request option.
5679
5710
  * @throws {RequiredError}
@@ -5735,6 +5766,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5735
5766
  * @throws {RequiredError}
5736
5767
  */
5737
5768
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
5769
+ /**
5770
+ * Returns a list of Users who created any memory item for this workspace
5771
+ * @summary Get AI Memory CreatedBy Users
5772
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
5773
+ * @param {*} [options] Override http request option.
5774
+ * @throws {RequiredError}
5775
+ */
5776
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
5738
5777
  /**
5739
5778
  * Returns a list of available LLM Endpoints
5740
5779
  * @summary Get Active LLM Endpoints for this workspace
@@ -5881,7 +5920,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5881
5920
  * @param {*} [options] Override http request option.
5882
5921
  * @throws {RequiredError}
5883
5922
  */
5884
- changeAnalysis(workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
5923
+ changeAnalysis(workspaceId: string, changeAnalysisRequest: AfmChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
5885
5924
  /**
5886
5925
  * Gets change analysis result.
5887
5926
  * @summary Get change analysis result
@@ -5956,7 +5995,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5956
5995
  computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
5957
5996
  /**
5958
5997
  * Returns a list of Users who created any object for this workspace
5959
- * @summary Get Analytics Catalog CreatedBy
5998
+ * @summary Get Analytics Catalog CreatedBy Users
5960
5999
  * @param {string} workspaceId Workspace identifier
5961
6000
  * @param {*} [options] Override http request option.
5962
6001
  * @throws {RequiredError}
@@ -6032,6 +6071,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
6032
6071
  * @throws {RequiredError}
6033
6072
  */
6034
6073
  keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
6074
+ /**
6075
+ * Returns a list of Users who created any memory item for this workspace
6076
+ * @summary Get AI Memory CreatedBy Users
6077
+ * @param {string} workspaceId Workspace identifier
6078
+ * @param {*} [options] Override http request option.
6079
+ * @throws {RequiredError}
6080
+ */
6081
+ memoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmMemoryItemCreatedByUsers>>;
6035
6082
  /**
6036
6083
  * Returns a list of available LLM Endpoints
6037
6084
  * @summary Get Active LLM Endpoints for this workspace
@@ -6283,7 +6330,7 @@ export declare interface AfmActionsApiInterface {
6283
6330
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
6284
6331
  /**
6285
6332
  * Returns a list of Users who created any object for this workspace
6286
- * @summary Get Analytics Catalog CreatedBy
6333
+ * @summary Get Analytics Catalog CreatedBy Users
6287
6334
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
6288
6335
  * @param {*} [options] Override http request option.
6289
6336
  * @throws {RequiredError}
@@ -6353,6 +6400,15 @@ export declare interface AfmActionsApiInterface {
6353
6400
  * @memberof ActionsApiInterface
6354
6401
  */
6355
6402
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
6403
+ /**
6404
+ * Returns a list of Users who created any memory item for this workspace
6405
+ * @summary Get AI Memory CreatedBy Users
6406
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
6407
+ * @param {*} [options] Override http request option.
6408
+ * @throws {RequiredError}
6409
+ * @memberof ActionsApiInterface
6410
+ */
6411
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
6356
6412
  /**
6357
6413
  * Returns a list of available LLM Endpoints
6358
6414
  * @summary Get Active LLM Endpoints for this workspace
@@ -6572,6 +6628,38 @@ export declare interface AfmCancelTokens {
6572
6628
  };
6573
6629
  }
6574
6630
 
6631
+ /**
6632
+ * Request for change analysis computation
6633
+ */
6634
+ export declare interface AfmChangeAnalysisRequest {
6635
+ measure: AfmMeasureItem;
6636
+ dateAttribute: AfmAttributeItem;
6637
+ /**
6638
+ * The reference time period (e.g., \'2025-01\')
6639
+ */
6640
+ referencePeriod: string;
6641
+ /**
6642
+ * The analyzed time period (e.g., \'2025-02\')
6643
+ */
6644
+ analyzedPeriod: string;
6645
+ /**
6646
+ * Attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
6647
+ */
6648
+ attributes?: Array<AfmAttributeItem>;
6649
+ /**
6650
+ * Optional filters to apply.
6651
+ */
6652
+ filters?: Array<ChangeAnalysisRequestFiltersInner>;
6653
+ /**
6654
+ * Auxiliary measures
6655
+ */
6656
+ auxMeasures?: Array<AfmMeasureItem>;
6657
+ /**
6658
+ * Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided.
6659
+ */
6660
+ useSmartAttributeSelection?: boolean;
6661
+ }
6662
+
6575
6663
  /**
6576
6664
  * Filter the result by comparing specified metric to given constant value, using given comparison operator.
6577
6665
  */
@@ -6723,6 +6811,35 @@ export declare interface AfmMeasureItem {
6723
6811
  definition: AfmMeasureDefinition;
6724
6812
  }
6725
6813
 
6814
+ export declare interface AfmMemoryItemCreatedByUsers {
6815
+ /**
6816
+ * Users who created memory item
6817
+ */
6818
+ users: Array<AfmMemoryItemUser>;
6819
+ /**
6820
+ * Reasoning for error states
6821
+ */
6822
+ reasoning: string;
6823
+ }
6824
+
6825
+ /**
6826
+ * Users who created memory item
6827
+ */
6828
+ export declare interface AfmMemoryItemUser {
6829
+ /**
6830
+ * User ID of the user who created memory item
6831
+ */
6832
+ userId: string;
6833
+ /**
6834
+ * First name of the user who created memory item
6835
+ */
6836
+ firstname: string;
6837
+ /**
6838
+ * Last name of the user who created memory item
6839
+ */
6840
+ lastname: string;
6841
+ }
6842
+
6726
6843
  /**
6727
6844
  * Individual change analysis data item
6728
6845
  */
@@ -6763,6 +6880,14 @@ export declare interface AfmMetricValueChange {
6763
6880
  * Whether the change is statistically significant
6764
6881
  */
6765
6882
  isSignificantChange: boolean;
6883
+ /**
6884
+ * The overall metric value in the analyzed period
6885
+ */
6886
+ overallMetricValueInAnalyzedPeriod: number;
6887
+ /**
6888
+ * The overall metric value in the reference period
6889
+ */
6890
+ overallMetricValueInReferencePeriod: number;
6766
6891
  }
6767
6892
 
6768
6893
  /**
@@ -14075,38 +14200,6 @@ declare interface ChangeAnalysisParams {
14075
14200
  useSmartAttributeSelection: boolean;
14076
14201
  }
14077
14202
 
14078
- /**
14079
- * Request for change analysis computation
14080
- */
14081
- declare interface ChangeAnalysisRequest {
14082
- measure: AfmMeasureItem;
14083
- dateAttribute: AfmAttributeItem;
14084
- /**
14085
- * The reference time period (e.g., \'2025-01\')
14086
- */
14087
- referencePeriod: string;
14088
- /**
14089
- * The analyzed time period (e.g., \'2025-02\')
14090
- */
14091
- analyzedPeriod: string;
14092
- /**
14093
- * Attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
14094
- */
14095
- attributes?: Array<AfmAttributeItem>;
14096
- /**
14097
- * Optional filters to apply.
14098
- */
14099
- filters?: Array<ChangeAnalysisRequestFiltersInner>;
14100
- /**
14101
- * Auxiliary measures
14102
- */
14103
- auxMeasures?: Array<AfmMeasureItem>;
14104
- /**
14105
- * Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided.
14106
- */
14107
- useSmartAttributeSelection?: boolean;
14108
- }
14109
-
14110
14203
  /**
14111
14204
  * @type ChangeAnalysisRequestFiltersInner
14112
14205
  */
@@ -20319,6 +20412,10 @@ export declare interface DeclarativeColumn {
20319
20412
  * Referenced table (Foreign key)
20320
20413
  */
20321
20414
  referencedTableColumn?: string;
20415
+ /**
20416
+ * Column description/comment from database
20417
+ */
20418
+ description?: string;
20322
20419
  }
20323
20420
 
20324
20421
  export declare const DeclarativeColumnDataTypeEnum: {
@@ -43514,6 +43611,7 @@ declare interface IAnalyticalDashboard_2 {
43514
43611
  disableUserFilterSave?: boolean;
43515
43612
  disableFilterViews?: boolean;
43516
43613
  evaluationFrequency?: string;
43614
+ sectionHeadersDateDataSet?: ObjRef;
43517
43615
  /**
43518
43616
  * Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
43519
43617
  * Each tab has its own layout, filter context and filter configs.
@@ -45069,13 +45167,17 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
45069
45167
  export declare interface JsonApiAggregatedFactOutList {
45070
45168
  data: Array<JsonApiAggregatedFactOutWithLinks>;
45071
45169
  links?: ListLinks;
45072
- meta?: JsonApiWorkspaceAutomationOutListMeta;
45170
+ meta?: JsonApiAggregatedFactOutListMeta;
45073
45171
  /**
45074
45172
  * Included resources
45075
45173
  */
45076
45174
  included?: Array<JsonApiAggregatedFactOutIncludes>;
45077
45175
  }
45078
45176
 
45177
+ export declare interface JsonApiAggregatedFactOutListMeta {
45178
+ page?: PageMetadata;
45179
+ }
45180
+
45079
45181
  export declare interface JsonApiAggregatedFactOutRelationships {
45080
45182
  dataset?: JsonApiAttributeOutRelationshipsDataset;
45081
45183
  sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
@@ -45124,7 +45226,18 @@ export declare interface JsonApiAnalyticalDashboardIn {
45124
45226
  * API identifier of an object
45125
45227
  */
45126
45228
  id: string;
45127
- attributes: JsonApiFilterContextOutAttributes;
45229
+ attributes: JsonApiAnalyticalDashboardInAttributes;
45230
+ }
45231
+
45232
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
45233
+ title?: string;
45234
+ description?: string;
45235
+ tags?: Array<string>;
45236
+ areRelationsValid?: boolean;
45237
+ /**
45238
+ * Free-form JSON content. Maximum supported length is 250000 characters.
45239
+ */
45240
+ content: object;
45128
45241
  }
45129
45242
 
45130
45243
  export declare interface JsonApiAnalyticalDashboardInDocument {
@@ -45201,7 +45314,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
45201
45314
  export declare interface JsonApiAnalyticalDashboardOutList {
45202
45315
  data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
45203
45316
  links?: ListLinks;
45204
- meta?: JsonApiWorkspaceAutomationOutListMeta;
45317
+ meta?: JsonApiAggregatedFactOutListMeta;
45205
45318
  /**
45206
45319
  * Included resources
45207
45320
  */
@@ -45347,7 +45460,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
45347
45460
  * API identifier of an object
45348
45461
  */
45349
45462
  id?: string;
45350
- attributes: JsonApiFilterContextOutAttributes;
45463
+ attributes: JsonApiAnalyticalDashboardInAttributes;
45351
45464
  }
45352
45465
 
45353
45466
  export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
@@ -45417,7 +45530,7 @@ export declare interface JsonApiApiTokenOutDocument {
45417
45530
  export declare interface JsonApiApiTokenOutList {
45418
45531
  data: Array<JsonApiApiTokenOutWithLinks>;
45419
45532
  links?: ListLinks;
45420
- meta?: JsonApiWorkspaceAutomationOutListMeta;
45533
+ meta?: JsonApiAggregatedFactOutListMeta;
45421
45534
  }
45422
45535
 
45423
45536
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -45457,7 +45570,18 @@ export declare interface JsonApiAttributeHierarchyIn {
45457
45570
  * API identifier of an object
45458
45571
  */
45459
45572
  id: string;
45460
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
45573
+ attributes?: JsonApiAttributeHierarchyInAttributes;
45574
+ }
45575
+
45576
+ export declare interface JsonApiAttributeHierarchyInAttributes {
45577
+ title?: string;
45578
+ description?: string;
45579
+ tags?: Array<string>;
45580
+ areRelationsValid?: boolean;
45581
+ /**
45582
+ * Free-form JSON content. Maximum supported length is 15000 characters.
45583
+ */
45584
+ content?: object;
45461
45585
  }
45462
45586
 
45463
45587
  export declare interface JsonApiAttributeHierarchyInDocument {
@@ -45534,7 +45658,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
45534
45658
  export declare interface JsonApiAttributeHierarchyOutList {
45535
45659
  data: Array<JsonApiAttributeHierarchyOutWithLinks>;
45536
45660
  links?: ListLinks;
45537
- meta?: JsonApiWorkspaceAutomationOutListMeta;
45661
+ meta?: JsonApiAggregatedFactOutListMeta;
45538
45662
  /**
45539
45663
  * Included resources
45540
45664
  */
@@ -45586,18 +45710,7 @@ export declare interface JsonApiAttributeHierarchyPatch {
45586
45710
  * API identifier of an object
45587
45711
  */
45588
45712
  id: string;
45589
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
45590
- }
45591
-
45592
- export declare interface JsonApiAttributeHierarchyPatchAttributes {
45593
- title?: string;
45594
- description?: string;
45595
- tags?: Array<string>;
45596
- areRelationsValid?: boolean;
45597
- /**
45598
- * Free-form JSON content. Maximum supported length is 15000 characters.
45599
- */
45600
- content?: object;
45713
+ attributes?: JsonApiAttributeHierarchyInAttributes;
45601
45714
  }
45602
45715
 
45603
45716
  export declare interface JsonApiAttributeHierarchyPatchDocument {
@@ -45714,7 +45827,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
45714
45827
  export declare interface JsonApiAttributeOutList {
45715
45828
  data: Array<JsonApiAttributeOutWithLinks>;
45716
45829
  links?: ListLinks;
45717
- meta?: JsonApiWorkspaceAutomationOutListMeta;
45830
+ meta?: JsonApiAggregatedFactOutListMeta;
45718
45831
  /**
45719
45832
  * Included resources
45720
45833
  */
@@ -45782,14 +45895,164 @@ export declare interface JsonApiAutomationIn {
45782
45895
  * API identifier of an object
45783
45896
  */
45784
45897
  id: string;
45785
- attributes?: JsonApiAutomationPatchAttributes;
45786
- relationships?: JsonApiAutomationPatchRelationships;
45898
+ attributes?: JsonApiAutomationInAttributes;
45899
+ relationships?: JsonApiAutomationInRelationships;
45900
+ }
45901
+
45902
+ export declare interface JsonApiAutomationInAttributes {
45903
+ title?: string;
45904
+ description?: string;
45905
+ tags?: Array<string>;
45906
+ areRelationsValid?: boolean;
45907
+ /**
45908
+ * Additional details to be included in the automated message.
45909
+ */
45910
+ details?: object;
45911
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
45912
+ /**
45913
+ * Current state of the automation.
45914
+ */
45915
+ state?: JsonApiAutomationInAttributesStateEnum;
45916
+ /**
45917
+ * Specify automation evaluation mode.
45918
+ */
45919
+ evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
45920
+ schedule?: JsonApiAutomationInAttributesSchedule;
45921
+ alert?: JsonApiAutomationInAttributesAlert;
45922
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
45923
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
45924
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
45925
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
45926
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
45927
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
45928
+ /**
45929
+ * External recipients of the automation action results.
45930
+ */
45931
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
45932
+ }
45933
+
45934
+ export declare interface JsonApiAutomationInAttributesAlert {
45935
+ execution: AlertAfm;
45936
+ condition: AlertCondition;
45937
+ /**
45938
+ * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
45939
+ */
45940
+ trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
45941
+ }
45942
+
45943
+ export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
45944
+ readonly ALWAYS: "ALWAYS";
45945
+ readonly ONCE: "ONCE";
45946
+ };
45947
+
45948
+ export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
45949
+
45950
+ export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
45951
+ requestPayload: DashboardTabularExportRequestV2;
45952
+ }
45953
+
45954
+ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
45955
+ readonly SHARED: "SHARED";
45956
+ readonly PER_RECIPIENT: "PER_RECIPIENT";
45957
+ };
45958
+
45959
+ export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
45960
+
45961
+ export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
45962
+ /**
45963
+ * E-mail address to send notifications from.
45964
+ */
45965
+ email: string;
45966
+ }
45967
+
45968
+ export declare interface JsonApiAutomationInAttributesImageExportsInner {
45969
+ requestPayload: ImageExportRequest;
45970
+ }
45971
+
45972
+ /**
45973
+ * Additional information for the automation.
45974
+ */
45975
+ export declare interface JsonApiAutomationInAttributesMetadata {
45976
+ [key: string]: any;
45977
+ widget?: string;
45978
+ visibleFilters?: Array<VisibleFilter>;
45979
+ }
45980
+
45981
+ export declare interface JsonApiAutomationInAttributesRawExportsInner {
45982
+ requestPayload: RawExportAutomationRequest;
45983
+ }
45984
+
45985
+ export declare interface JsonApiAutomationInAttributesSchedule {
45986
+ /**
45987
+ * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
45988
+ */
45989
+ cron: string;
45990
+ /**
45991
+ * Human-readable description of the cron expression.
45992
+ */
45993
+ cronDescription?: string;
45994
+ /**
45995
+ * Timezone in which the schedule is defined.
45996
+ */
45997
+ timezone: string;
45998
+ /**
45999
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46000
+ */
46001
+ firstRun?: string;
46002
+ }
46003
+
46004
+ export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
46005
+ requestPayload: SlidesExportRequest;
46006
+ }
46007
+
46008
+ export declare const JsonApiAutomationInAttributesStateEnum: {
46009
+ readonly ACTIVE: "ACTIVE";
46010
+ readonly PAUSED: "PAUSED";
46011
+ };
46012
+
46013
+ export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
46014
+
46015
+ export declare interface JsonApiAutomationInAttributesTabularExportsInner {
46016
+ requestPayload: TabularExportRequest;
46017
+ }
46018
+
46019
+ export declare interface JsonApiAutomationInAttributesVisualExportsInner {
46020
+ requestPayload: VisualExportRequest;
45787
46021
  }
45788
46022
 
45789
46023
  export declare interface JsonApiAutomationInDocument {
45790
46024
  data: JsonApiAutomationIn;
45791
46025
  }
45792
46026
 
46027
+ export declare interface JsonApiAutomationInRelationships {
46028
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
46029
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
46030
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
46031
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
46032
+ }
46033
+
46034
+ export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
46035
+ data: JsonApiAnalyticalDashboardLinkage | null;
46036
+ }
46037
+
46038
+ export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
46039
+ /**
46040
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46041
+ */
46042
+ data: Array<JsonApiExportDefinitionLinkage>;
46043
+ }
46044
+
46045
+ export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
46046
+ data: JsonApiNotificationChannelLinkage | null;
46047
+ }
46048
+
46049
+ export declare interface JsonApiAutomationInRelationshipsRecipients {
46050
+ /**
46051
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46052
+ */
46053
+ data: Array<JsonApiUserLinkage>;
46054
+ }
46055
+
45793
46056
  export declare const JsonApiAutomationInTypeEnum: {
45794
46057
  readonly AUTOMATION: "automation";
45795
46058
  };
@@ -45836,7 +46099,7 @@ export declare interface JsonApiAutomationOutAttributes {
45836
46099
  * Additional details to be included in the automated message.
45837
46100
  */
45838
46101
  details?: object;
45839
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
46102
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
45840
46103
  /**
45841
46104
  * Current state of the automation.
45842
46105
  */
@@ -45845,18 +46108,18 @@ export declare interface JsonApiAutomationOutAttributes {
45845
46108
  * Specify automation evaluation mode.
45846
46109
  */
45847
46110
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
45848
- schedule?: JsonApiAutomationPatchAttributesSchedule;
45849
- alert?: JsonApiAutomationPatchAttributesAlert;
45850
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
45851
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
45852
- imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
45853
- rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
45854
- slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
45855
- dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
46111
+ schedule?: JsonApiAutomationInAttributesSchedule;
46112
+ alert?: JsonApiAutomationInAttributesAlert;
46113
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
46114
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
46115
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
46116
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
46117
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
46118
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
45856
46119
  /**
45857
46120
  * External recipients of the automation action results.
45858
46121
  */
45859
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
46122
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
45860
46123
  createdAt?: string;
45861
46124
  modifiedAt?: string;
45862
46125
  }
@@ -45895,7 +46158,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
45895
46158
  export declare interface JsonApiAutomationOutList {
45896
46159
  data: Array<JsonApiAutomationOutWithLinks>;
45897
46160
  links?: ListLinks;
45898
- meta?: JsonApiWorkspaceAutomationOutListMeta;
46161
+ meta?: JsonApiAggregatedFactOutListMeta;
45899
46162
  /**
45900
46163
  * Included resources
45901
46164
  */
@@ -45903,12 +46166,12 @@ export declare interface JsonApiAutomationOutList {
45903
46166
  }
45904
46167
 
45905
46168
  export declare interface JsonApiAutomationOutRelationships {
45906
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
45907
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
46169
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
46170
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
45908
46171
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45909
46172
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
45910
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
45911
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
46173
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
46174
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
45912
46175
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
45913
46176
  }
45914
46177
 
@@ -45958,164 +46221,14 @@ export declare interface JsonApiAutomationPatch {
45958
46221
  * API identifier of an object
45959
46222
  */
45960
46223
  id: string;
45961
- attributes?: JsonApiAutomationPatchAttributes;
45962
- relationships?: JsonApiAutomationPatchRelationships;
45963
- }
45964
-
45965
- export declare interface JsonApiAutomationPatchAttributes {
45966
- title?: string;
45967
- description?: string;
45968
- tags?: Array<string>;
45969
- areRelationsValid?: boolean;
45970
- /**
45971
- * Additional details to be included in the automated message.
45972
- */
45973
- details?: object;
45974
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
45975
- /**
45976
- * Current state of the automation.
45977
- */
45978
- state?: JsonApiAutomationPatchAttributesStateEnum;
45979
- /**
45980
- * Specify automation evaluation mode.
45981
- */
45982
- evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
45983
- schedule?: JsonApiAutomationPatchAttributesSchedule;
45984
- alert?: JsonApiAutomationPatchAttributesAlert;
45985
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
45986
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
45987
- imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
45988
- rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
45989
- slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
45990
- dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
45991
- /**
45992
- * External recipients of the automation action results.
45993
- */
45994
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
45995
- }
45996
-
45997
- export declare interface JsonApiAutomationPatchAttributesAlert {
45998
- execution: AlertAfm;
45999
- condition: AlertCondition;
46000
- /**
46001
- * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
46002
- */
46003
- trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
46004
- }
46005
-
46006
- export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
46007
- readonly ALWAYS: "ALWAYS";
46008
- readonly ONCE: "ONCE";
46009
- };
46010
-
46011
- export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
46012
-
46013
- export declare interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
46014
- requestPayload: DashboardTabularExportRequestV2;
46015
- }
46016
-
46017
- export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
46018
- readonly SHARED: "SHARED";
46019
- readonly PER_RECIPIENT: "PER_RECIPIENT";
46020
- };
46021
-
46022
- export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
46023
-
46024
- export declare interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
46025
- /**
46026
- * E-mail address to send notifications from.
46027
- */
46028
- email: string;
46029
- }
46030
-
46031
- export declare interface JsonApiAutomationPatchAttributesImageExportsInner {
46032
- requestPayload: ImageExportRequest;
46033
- }
46034
-
46035
- /**
46036
- * Additional information for the automation.
46037
- */
46038
- export declare interface JsonApiAutomationPatchAttributesMetadata {
46039
- [key: string]: any;
46040
- widget?: string;
46041
- visibleFilters?: Array<VisibleFilter>;
46042
- }
46043
-
46044
- export declare interface JsonApiAutomationPatchAttributesRawExportsInner {
46045
- requestPayload: RawExportAutomationRequest;
46046
- }
46047
-
46048
- export declare interface JsonApiAutomationPatchAttributesSchedule {
46049
- /**
46050
- * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
46051
- */
46052
- cron: string;
46053
- /**
46054
- * Human-readable description of the cron expression.
46055
- */
46056
- cronDescription?: string;
46057
- /**
46058
- * Timezone in which the schedule is defined.
46059
- */
46060
- timezone: string;
46061
- /**
46062
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46063
- */
46064
- firstRun?: string;
46065
- }
46066
-
46067
- export declare interface JsonApiAutomationPatchAttributesSlidesExportsInner {
46068
- requestPayload: SlidesExportRequest;
46069
- }
46070
-
46071
- export declare const JsonApiAutomationPatchAttributesStateEnum: {
46072
- readonly ACTIVE: "ACTIVE";
46073
- readonly PAUSED: "PAUSED";
46074
- };
46075
-
46076
- export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
46077
-
46078
- export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
46079
- requestPayload: TabularExportRequest;
46080
- }
46081
-
46082
- export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
46083
- requestPayload: VisualExportRequest;
46224
+ attributes?: JsonApiAutomationInAttributes;
46225
+ relationships?: JsonApiAutomationInRelationships;
46084
46226
  }
46085
46227
 
46086
46228
  export declare interface JsonApiAutomationPatchDocument {
46087
46229
  data: JsonApiAutomationPatch;
46088
46230
  }
46089
46231
 
46090
- export declare interface JsonApiAutomationPatchRelationships {
46091
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
46092
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
46093
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
46094
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
46095
- }
46096
-
46097
- export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
46098
- data: JsonApiAnalyticalDashboardLinkage | null;
46099
- }
46100
-
46101
- export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
46102
- /**
46103
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46104
- */
46105
- data: Array<JsonApiExportDefinitionLinkage>;
46106
- }
46107
-
46108
- export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
46109
- data: JsonApiNotificationChannelLinkage | null;
46110
- }
46111
-
46112
- export declare interface JsonApiAutomationPatchRelationshipsRecipients {
46113
- /**
46114
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
46115
- */
46116
- data: Array<JsonApiUserLinkage>;
46117
- }
46118
-
46119
46232
  export declare const JsonApiAutomationPatchTypeEnum: {
46120
46233
  readonly AUTOMATION: "automation";
46121
46234
  };
@@ -46214,7 +46327,15 @@ export declare interface JsonApiColorPaletteIn {
46214
46327
  * API identifier of an object
46215
46328
  */
46216
46329
  id: string;
46217
- attributes: JsonApiColorPaletteOutAttributes;
46330
+ attributes: JsonApiColorPaletteInAttributes;
46331
+ }
46332
+
46333
+ export declare interface JsonApiColorPaletteInAttributes {
46334
+ name: string;
46335
+ /**
46336
+ * Free-form JSON content. Maximum supported length is 15000 characters.
46337
+ */
46338
+ content: object;
46218
46339
  }
46219
46340
 
46220
46341
  export declare interface JsonApiColorPaletteInDocument {
@@ -46239,15 +46360,7 @@ export declare interface JsonApiColorPaletteOut {
46239
46360
  * API identifier of an object
46240
46361
  */
46241
46362
  id: string;
46242
- attributes: JsonApiColorPaletteOutAttributes;
46243
- }
46244
-
46245
- export declare interface JsonApiColorPaletteOutAttributes {
46246
- name: string;
46247
- /**
46248
- * Free-form JSON content. Maximum supported length is 15000 characters.
46249
- */
46250
- content: object;
46363
+ attributes: JsonApiColorPaletteInAttributes;
46251
46364
  }
46252
46365
 
46253
46366
  export declare interface JsonApiColorPaletteOutDocument {
@@ -46261,7 +46374,7 @@ export declare interface JsonApiColorPaletteOutDocument {
46261
46374
  export declare interface JsonApiColorPaletteOutList {
46262
46375
  data: Array<JsonApiColorPaletteOutWithLinks>;
46263
46376
  links?: ListLinks;
46264
- meta?: JsonApiWorkspaceAutomationOutListMeta;
46377
+ meta?: JsonApiAggregatedFactOutListMeta;
46265
46378
  }
46266
46379
 
46267
46380
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -46279,7 +46392,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
46279
46392
  * API identifier of an object
46280
46393
  */
46281
46394
  id: string;
46282
- attributes: JsonApiColorPaletteOutAttributes;
46395
+ attributes: JsonApiColorPaletteInAttributes;
46283
46396
  links?: ObjectLinks;
46284
46397
  }
46285
46398
 
@@ -46418,7 +46531,11 @@ export declare interface JsonApiCspDirectiveIn {
46418
46531
  * API identifier of an object
46419
46532
  */
46420
46533
  id: string;
46421
- attributes: JsonApiCspDirectiveOutAttributes;
46534
+ attributes: JsonApiCspDirectiveInAttributes;
46535
+ }
46536
+
46537
+ export declare interface JsonApiCspDirectiveInAttributes {
46538
+ sources: Array<string>;
46422
46539
  }
46423
46540
 
46424
46541
  export declare interface JsonApiCspDirectiveInDocument {
@@ -46443,11 +46560,7 @@ export declare interface JsonApiCspDirectiveOut {
46443
46560
  * API identifier of an object
46444
46561
  */
46445
46562
  id: string;
46446
- attributes: JsonApiCspDirectiveOutAttributes;
46447
- }
46448
-
46449
- export declare interface JsonApiCspDirectiveOutAttributes {
46450
- sources: Array<string>;
46563
+ attributes: JsonApiCspDirectiveInAttributes;
46451
46564
  }
46452
46565
 
46453
46566
  export declare interface JsonApiCspDirectiveOutDocument {
@@ -46461,7 +46574,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
46461
46574
  export declare interface JsonApiCspDirectiveOutList {
46462
46575
  data: Array<JsonApiCspDirectiveOutWithLinks>;
46463
46576
  links?: ListLinks;
46464
- meta?: JsonApiWorkspaceAutomationOutListMeta;
46577
+ meta?: JsonApiAggregatedFactOutListMeta;
46465
46578
  }
46466
46579
 
46467
46580
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -46479,7 +46592,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
46479
46592
  * API identifier of an object
46480
46593
  */
46481
46594
  id: string;
46482
- attributes: JsonApiCspDirectiveOutAttributes;
46595
+ attributes: JsonApiCspDirectiveInAttributes;
46483
46596
  links?: ObjectLinks;
46484
46597
  }
46485
46598
 
@@ -46530,7 +46643,15 @@ export declare interface JsonApiCustomApplicationSettingIn {
46530
46643
  * API identifier of an object
46531
46644
  */
46532
46645
  id: string;
46533
- attributes: JsonApiCustomApplicationSettingOutAttributes;
46646
+ attributes: JsonApiCustomApplicationSettingInAttributes;
46647
+ }
46648
+
46649
+ export declare interface JsonApiCustomApplicationSettingInAttributes {
46650
+ applicationName: string;
46651
+ /**
46652
+ * Free-form JSON content. Maximum supported length is 15000 characters.
46653
+ */
46654
+ content: object;
46534
46655
  }
46535
46656
 
46536
46657
  export declare interface JsonApiCustomApplicationSettingInDocument {
@@ -46556,15 +46677,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
46556
46677
  */
46557
46678
  id: string;
46558
46679
  meta?: JsonApiVisualizationObjectOutMeta;
46559
- attributes: JsonApiCustomApplicationSettingOutAttributes;
46560
- }
46561
-
46562
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
46563
- applicationName: string;
46564
- /**
46565
- * Free-form JSON content. Maximum supported length is 15000 characters.
46566
- */
46567
- content: object;
46680
+ attributes: JsonApiCustomApplicationSettingInAttributes;
46568
46681
  }
46569
46682
 
46570
46683
  export declare interface JsonApiCustomApplicationSettingOutDocument {
@@ -46578,7 +46691,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
46578
46691
  export declare interface JsonApiCustomApplicationSettingOutList {
46579
46692
  data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
46580
46693
  links?: ListLinks;
46581
- meta?: JsonApiWorkspaceAutomationOutListMeta;
46694
+ meta?: JsonApiAggregatedFactOutListMeta;
46582
46695
  }
46583
46696
 
46584
46697
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -46597,7 +46710,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
46597
46710
  */
46598
46711
  id: string;
46599
46712
  meta?: JsonApiVisualizationObjectOutMeta;
46600
- attributes: JsonApiCustomApplicationSettingOutAttributes;
46713
+ attributes: JsonApiCustomApplicationSettingInAttributes;
46601
46714
  links?: ObjectLinks;
46602
46715
  }
46603
46716
 
@@ -46652,7 +46765,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
46652
46765
  * API identifier of an object
46653
46766
  */
46654
46767
  id?: string;
46655
- attributes: JsonApiCustomApplicationSettingOutAttributes;
46768
+ attributes: JsonApiCustomApplicationSettingInAttributes;
46656
46769
  }
46657
46770
 
46658
46771
  export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
@@ -46677,7 +46790,18 @@ export declare interface JsonApiDashboardPluginIn {
46677
46790
  * API identifier of an object
46678
46791
  */
46679
46792
  id: string;
46680
- attributes?: JsonApiDashboardPluginPatchAttributes;
46793
+ attributes?: JsonApiDashboardPluginInAttributes;
46794
+ }
46795
+
46796
+ export declare interface JsonApiDashboardPluginInAttributes {
46797
+ title?: string;
46798
+ description?: string;
46799
+ tags?: Array<string>;
46800
+ areRelationsValid?: boolean;
46801
+ /**
46802
+ * Free-form JSON content. Maximum supported length is 250000 characters.
46803
+ */
46804
+ content?: object;
46681
46805
  }
46682
46806
 
46683
46807
  export declare interface JsonApiDashboardPluginInDocument {
@@ -46749,7 +46873,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
46749
46873
  export declare interface JsonApiDashboardPluginOutList {
46750
46874
  data: Array<JsonApiDashboardPluginOutWithLinks>;
46751
46875
  links?: ListLinks;
46752
- meta?: JsonApiWorkspaceAutomationOutListMeta;
46876
+ meta?: JsonApiAggregatedFactOutListMeta;
46753
46877
  /**
46754
46878
  * Included resources
46755
46879
  */
@@ -46800,18 +46924,7 @@ export declare interface JsonApiDashboardPluginPatch {
46800
46924
  * API identifier of an object
46801
46925
  */
46802
46926
  id: string;
46803
- attributes?: JsonApiDashboardPluginPatchAttributes;
46804
- }
46805
-
46806
- export declare interface JsonApiDashboardPluginPatchAttributes {
46807
- title?: string;
46808
- description?: string;
46809
- tags?: Array<string>;
46810
- areRelationsValid?: boolean;
46811
- /**
46812
- * Free-form JSON content. Maximum supported length is 250000 characters.
46813
- */
46814
- content?: object;
46927
+ attributes?: JsonApiDashboardPluginInAttributes;
46815
46928
  }
46816
46929
 
46817
46930
  export declare interface JsonApiDashboardPluginPatchDocument {
@@ -46836,7 +46949,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
46836
46949
  * API identifier of an object
46837
46950
  */
46838
46951
  id?: string;
46839
- attributes?: JsonApiDashboardPluginPatchAttributes;
46952
+ attributes?: JsonApiDashboardPluginInAttributes;
46840
46953
  }
46841
46954
 
46842
46955
  export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
@@ -47001,7 +47114,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
47001
47114
  export declare interface JsonApiDatasetOutList {
47002
47115
  data: Array<JsonApiDatasetOutWithLinks>;
47003
47116
  links?: ListLinks;
47004
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47117
+ meta?: JsonApiAggregatedFactOutListMeta;
47005
47118
  /**
47006
47119
  * Included resources
47007
47120
  */
@@ -47121,7 +47234,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
47121
47234
  export declare interface JsonApiDataSourceIdentifierOutList {
47122
47235
  data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
47123
47236
  links?: ListLinks;
47124
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47237
+ meta?: JsonApiAggregatedFactOutListMeta;
47125
47238
  }
47126
47239
 
47127
47240
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
@@ -47213,7 +47326,7 @@ export declare interface JsonApiDataSourceInAttributes {
47213
47326
  /**
47214
47327
  * Additional parameters to be used when connecting to the database providing the data for the data source.
47215
47328
  */
47216
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47329
+ parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
47217
47330
  /**
47218
47331
  * Determines how the results coming from a particular datasource should be cached.
47219
47332
  */
@@ -47227,6 +47340,11 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
47227
47340
 
47228
47341
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
47229
47342
 
47343
+ export declare interface JsonApiDataSourceInAttributesParametersInner {
47344
+ name: string;
47345
+ value: string;
47346
+ }
47347
+
47230
47348
  export declare const JsonApiDataSourceInAttributesTypeEnum: {
47231
47349
  readonly POSTGRESQL: "POSTGRESQL";
47232
47350
  readonly REDSHIFT: "REDSHIFT";
@@ -47312,11 +47430,11 @@ export declare interface JsonApiDataSourceOutAttributes {
47312
47430
  /**
47313
47431
  * Additional parameters to be used when connecting to the database providing the data for the data source.
47314
47432
  */
47315
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47433
+ parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
47316
47434
  /**
47317
47435
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
47318
47436
  */
47319
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47437
+ decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
47320
47438
  /**
47321
47439
  * Determines how the results coming from a particular datasource should be cached.
47322
47440
  */
@@ -47386,7 +47504,7 @@ export declare interface JsonApiDataSourceOutDocument {
47386
47504
  export declare interface JsonApiDataSourceOutList {
47387
47505
  data: Array<JsonApiDataSourceOutWithLinks>;
47388
47506
  links?: ListLinks;
47389
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47507
+ meta?: JsonApiAggregatedFactOutListMeta;
47390
47508
  }
47391
47509
 
47392
47510
  export declare interface JsonApiDataSourceOutMeta {
@@ -47492,7 +47610,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
47492
47610
  /**
47493
47611
  * Additional parameters to be used when connecting to the database providing the data for the data source.
47494
47612
  */
47495
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
47613
+ parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
47496
47614
  /**
47497
47615
  * Determines how the results coming from a particular datasource should be cached.
47498
47616
  */
@@ -47506,11 +47624,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
47506
47624
 
47507
47625
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
47508
47626
 
47509
- export declare interface JsonApiDataSourcePatchAttributesParametersInner {
47510
- name: string;
47511
- value: string;
47512
- }
47513
-
47514
47627
  export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
47515
47628
  readonly POSTGRESQL: "POSTGRESQL";
47516
47629
  readonly REDSHIFT: "REDSHIFT";
@@ -47583,7 +47696,7 @@ export declare interface JsonApiEntitlementOutDocument {
47583
47696
  export declare interface JsonApiEntitlementOutList {
47584
47697
  data: Array<JsonApiEntitlementOutWithLinks>;
47585
47698
  links?: ListLinks;
47586
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47699
+ meta?: JsonApiAggregatedFactOutListMeta;
47587
47700
  }
47588
47701
 
47589
47702
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -47623,14 +47736,27 @@ export declare interface JsonApiExportDefinitionIn {
47623
47736
  * API identifier of an object
47624
47737
  */
47625
47738
  id: string;
47626
- attributes?: JsonApiExportDefinitionPatchAttributes;
47627
- relationships?: JsonApiExportDefinitionPatchRelationships;
47739
+ attributes?: JsonApiExportDefinitionInAttributes;
47740
+ relationships?: JsonApiExportDefinitionInRelationships;
47741
+ }
47742
+
47743
+ export declare interface JsonApiExportDefinitionInAttributes {
47744
+ title?: string;
47745
+ description?: string;
47746
+ tags?: Array<string>;
47747
+ requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
47748
+ areRelationsValid?: boolean;
47628
47749
  }
47629
47750
 
47630
47751
  export declare interface JsonApiExportDefinitionInDocument {
47631
47752
  data: JsonApiExportDefinitionIn;
47632
47753
  }
47633
47754
 
47755
+ export declare interface JsonApiExportDefinitionInRelationships {
47756
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47757
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47758
+ }
47759
+
47634
47760
  export declare const JsonApiExportDefinitionInTypeEnum: {
47635
47761
  readonly EXPORT_DEFINITION: "exportDefinition";
47636
47762
  };
@@ -47704,7 +47830,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
47704
47830
  export declare interface JsonApiExportDefinitionOutList {
47705
47831
  data: Array<JsonApiExportDefinitionOutWithLinks>;
47706
47832
  links?: ListLinks;
47707
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47833
+ meta?: JsonApiAggregatedFactOutListMeta;
47708
47834
  /**
47709
47835
  * Included resources
47710
47836
  */
@@ -47713,7 +47839,7 @@ export declare interface JsonApiExportDefinitionOutList {
47713
47839
 
47714
47840
  export declare interface JsonApiExportDefinitionOutRelationships {
47715
47841
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47716
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
47842
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47717
47843
  automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
47718
47844
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47719
47845
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
@@ -47766,27 +47892,14 @@ export declare interface JsonApiExportDefinitionPatch {
47766
47892
  * API identifier of an object
47767
47893
  */
47768
47894
  id: string;
47769
- attributes?: JsonApiExportDefinitionPatchAttributes;
47770
- relationships?: JsonApiExportDefinitionPatchRelationships;
47771
- }
47772
-
47773
- export declare interface JsonApiExportDefinitionPatchAttributes {
47774
- title?: string;
47775
- description?: string;
47776
- tags?: Array<string>;
47777
- requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
47778
- areRelationsValid?: boolean;
47895
+ attributes?: JsonApiExportDefinitionInAttributes;
47896
+ relationships?: JsonApiExportDefinitionInRelationships;
47779
47897
  }
47780
47898
 
47781
47899
  export declare interface JsonApiExportDefinitionPatchDocument {
47782
47900
  data: JsonApiExportDefinitionPatch;
47783
47901
  }
47784
47902
 
47785
- export declare interface JsonApiExportDefinitionPatchRelationships {
47786
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47787
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
47788
- }
47789
-
47790
47903
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
47791
47904
  readonly EXPORT_DEFINITION: "exportDefinition";
47792
47905
  };
@@ -47805,8 +47918,8 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
47805
47918
  * API identifier of an object
47806
47919
  */
47807
47920
  id?: string;
47808
- attributes?: JsonApiExportDefinitionPatchAttributes;
47809
- relationships?: JsonApiExportDefinitionPatchRelationships;
47921
+ attributes?: JsonApiExportDefinitionInAttributes;
47922
+ relationships?: JsonApiExportDefinitionInRelationships;
47810
47923
  }
47811
47924
 
47812
47925
  export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
@@ -47831,7 +47944,7 @@ export declare interface JsonApiExportTemplateIn {
47831
47944
  * API identifier of an object
47832
47945
  */
47833
47946
  id: string;
47834
- attributes: JsonApiExportTemplateOutAttributes;
47947
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47835
47948
  }
47836
47949
 
47837
47950
  export declare interface JsonApiExportTemplateInDocument {
@@ -47856,16 +47969,7 @@ export declare interface JsonApiExportTemplateOut {
47856
47969
  * API identifier of an object
47857
47970
  */
47858
47971
  id: string;
47859
- attributes: JsonApiExportTemplateOutAttributes;
47860
- }
47861
-
47862
- export declare interface JsonApiExportTemplateOutAttributes {
47863
- /**
47864
- * User-facing name of the Slides template.
47865
- */
47866
- name: string;
47867
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47868
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47972
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47869
47973
  }
47870
47974
 
47871
47975
  export declare interface JsonApiExportTemplateOutDocument {
@@ -47879,7 +47983,7 @@ export declare interface JsonApiExportTemplateOutDocument {
47879
47983
  export declare interface JsonApiExportTemplateOutList {
47880
47984
  data: Array<JsonApiExportTemplateOutWithLinks>;
47881
47985
  links?: ListLinks;
47882
- meta?: JsonApiWorkspaceAutomationOutListMeta;
47986
+ meta?: JsonApiAggregatedFactOutListMeta;
47883
47987
  }
47884
47988
 
47885
47989
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -47897,7 +48001,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
47897
48001
  * API identifier of an object
47898
48002
  */
47899
48003
  id: string;
47900
- attributes: JsonApiExportTemplateOutAttributes;
48004
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47901
48005
  links?: ObjectLinks;
47902
48006
  }
47903
48007
 
@@ -47927,73 +48031,82 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47927
48031
  * User-facing name of the Slides template.
47928
48032
  */
47929
48033
  name?: string;
47930
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47931
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
48034
+ dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48035
+ widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
48036
+ }
48037
+
48038
+ export declare interface JsonApiExportTemplatePatchDocument {
48039
+ data: JsonApiExportTemplatePatch;
48040
+ }
48041
+
48042
+ export declare const JsonApiExportTemplatePatchTypeEnum: {
48043
+ readonly EXPORT_TEMPLATE: "exportTemplate";
48044
+ };
48045
+
48046
+ export declare type JsonApiExportTemplatePatchTypeEnum = (typeof JsonApiExportTemplatePatchTypeEnum)[keyof typeof JsonApiExportTemplatePatchTypeEnum];
48047
+
48048
+ /**
48049
+ * JSON:API representation of exportTemplate entity.
48050
+ */
48051
+ export declare interface JsonApiExportTemplatePostOptionalId {
48052
+ /**
48053
+ * Object type
48054
+ */
48055
+ type: JsonApiExportTemplatePostOptionalIdTypeEnum;
48056
+ /**
48057
+ * API identifier of an object
48058
+ */
48059
+ id?: string;
48060
+ attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48061
+ }
48062
+
48063
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
48064
+ /**
48065
+ * User-facing name of the Slides template.
48066
+ */
48067
+ name: string;
48068
+ dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48069
+ widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
47932
48070
  }
47933
48071
 
47934
48072
  /**
47935
48073
  * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47936
48074
  */
47937
- export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
48075
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
47938
48076
  /**
47939
48077
  * Export types this template applies to.
47940
48078
  */
47941
- appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
48079
+ appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
47942
48080
  coverSlide?: CoverSlideTemplate | null;
47943
48081
  introSlide?: IntroSlideTemplate | null;
47944
48082
  sectionSlide?: SectionSlideTemplate | null;
47945
48083
  contentSlide?: ContentSlideTemplate | null;
47946
48084
  }
47947
48085
 
47948
- export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
48086
+ export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
47949
48087
  readonly PDF: "PDF";
47950
48088
  readonly PPTX: "PPTX";
47951
48089
  };
47952
48090
 
47953
- export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
48091
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
47954
48092
 
47955
48093
  /**
47956
48094
  * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47957
48095
  */
47958
- export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
48096
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
47959
48097
  /**
47960
48098
  * Export types this template applies to.
47961
48099
  */
47962
- appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
48100
+ appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
47963
48101
  contentSlide?: ContentSlideTemplate | null;
47964
48102
  }
47965
48103
 
47966
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
48104
+ export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
47967
48105
  readonly PDF: "PDF";
47968
48106
  readonly PPTX: "PPTX";
47969
48107
  };
47970
48108
 
47971
- export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
47972
-
47973
- export declare interface JsonApiExportTemplatePatchDocument {
47974
- data: JsonApiExportTemplatePatch;
47975
- }
47976
-
47977
- export declare const JsonApiExportTemplatePatchTypeEnum: {
47978
- readonly EXPORT_TEMPLATE: "exportTemplate";
47979
- };
47980
-
47981
- export declare type JsonApiExportTemplatePatchTypeEnum = (typeof JsonApiExportTemplatePatchTypeEnum)[keyof typeof JsonApiExportTemplatePatchTypeEnum];
47982
-
47983
- /**
47984
- * JSON:API representation of exportTemplate entity.
47985
- */
47986
- export declare interface JsonApiExportTemplatePostOptionalId {
47987
- /**
47988
- * Object type
47989
- */
47990
- type: JsonApiExportTemplatePostOptionalIdTypeEnum;
47991
- /**
47992
- * API identifier of an object
47993
- */
47994
- id?: string;
47995
- attributes: JsonApiExportTemplateOutAttributes;
47996
- }
48109
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
47997
48110
 
47998
48111
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
47999
48112
  data: JsonApiExportTemplatePostOptionalId;
@@ -48073,7 +48186,7 @@ export declare interface JsonApiFactOutDocument {
48073
48186
  export declare interface JsonApiFactOutList {
48074
48187
  data: Array<JsonApiFactOutWithLinks>;
48075
48188
  links?: ListLinks;
48076
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48189
+ meta?: JsonApiAggregatedFactOutListMeta;
48077
48190
  /**
48078
48191
  * Included resources
48079
48192
  */
@@ -48123,7 +48236,7 @@ export declare interface JsonApiFilterContextIn {
48123
48236
  * API identifier of an object
48124
48237
  */
48125
48238
  id: string;
48126
- attributes: JsonApiFilterContextOutAttributes;
48239
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48127
48240
  }
48128
48241
 
48129
48242
  export declare interface JsonApiFilterContextInDocument {
@@ -48163,21 +48276,10 @@ export declare interface JsonApiFilterContextOut {
48163
48276
  */
48164
48277
  id: string;
48165
48278
  meta?: JsonApiVisualizationObjectOutMeta;
48166
- attributes: JsonApiFilterContextOutAttributes;
48279
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48167
48280
  relationships?: JsonApiFilterContextOutRelationships;
48168
48281
  }
48169
48282
 
48170
- export declare interface JsonApiFilterContextOutAttributes {
48171
- title?: string;
48172
- description?: string;
48173
- tags?: Array<string>;
48174
- areRelationsValid?: boolean;
48175
- /**
48176
- * Free-form JSON content. Maximum supported length is 250000 characters.
48177
- */
48178
- content: object;
48179
- }
48180
-
48181
48283
  export declare interface JsonApiFilterContextOutDocument {
48182
48284
  data: JsonApiFilterContextOut;
48183
48285
  links?: ObjectLinks;
@@ -48198,7 +48300,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
48198
48300
  export declare interface JsonApiFilterContextOutList {
48199
48301
  data: Array<JsonApiFilterContextOutWithLinks>;
48200
48302
  links?: ListLinks;
48201
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48303
+ meta?: JsonApiAggregatedFactOutListMeta;
48202
48304
  /**
48203
48305
  * Included resources
48204
48306
  */
@@ -48227,7 +48329,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
48227
48329
  */
48228
48330
  id: string;
48229
48331
  meta?: JsonApiVisualizationObjectOutMeta;
48230
- attributes: JsonApiFilterContextOutAttributes;
48332
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48231
48333
  relationships?: JsonApiFilterContextOutRelationships;
48232
48334
  links?: ObjectLinks;
48233
48335
  }
@@ -48275,7 +48377,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
48275
48377
  * API identifier of an object
48276
48378
  */
48277
48379
  id?: string;
48278
- attributes: JsonApiFilterContextOutAttributes;
48380
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48279
48381
  }
48280
48382
 
48281
48383
  export declare interface JsonApiFilterContextPostOptionalIdDocument {
@@ -48300,14 +48402,38 @@ export declare interface JsonApiFilterViewIn {
48300
48402
  * API identifier of an object
48301
48403
  */
48302
48404
  id: string;
48303
- attributes: JsonApiFilterViewOutAttributes;
48304
- relationships?: JsonApiFilterViewPatchRelationships;
48405
+ attributes: JsonApiFilterViewInAttributes;
48406
+ relationships?: JsonApiFilterViewInRelationships;
48407
+ }
48408
+
48409
+ export declare interface JsonApiFilterViewInAttributes {
48410
+ title: string;
48411
+ description?: string;
48412
+ tags?: Array<string>;
48413
+ areRelationsValid?: boolean;
48414
+ /**
48415
+ * Indicator whether the filter view should by applied by default.
48416
+ */
48417
+ isDefault?: boolean;
48418
+ /**
48419
+ * The respective filter context.
48420
+ */
48421
+ content: object;
48305
48422
  }
48306
48423
 
48307
48424
  export declare interface JsonApiFilterViewInDocument {
48308
48425
  data: JsonApiFilterViewIn;
48309
48426
  }
48310
48427
 
48428
+ export declare interface JsonApiFilterViewInRelationships {
48429
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
48430
+ user?: JsonApiFilterViewInRelationshipsUser;
48431
+ }
48432
+
48433
+ export declare interface JsonApiFilterViewInRelationshipsUser {
48434
+ data: JsonApiUserLinkage | null;
48435
+ }
48436
+
48311
48437
  export declare const JsonApiFilterViewInTypeEnum: {
48312
48438
  readonly FILTER_VIEW: "filterView";
48313
48439
  };
@@ -48326,23 +48452,8 @@ export declare interface JsonApiFilterViewOut {
48326
48452
  * API identifier of an object
48327
48453
  */
48328
48454
  id: string;
48329
- attributes: JsonApiFilterViewOutAttributes;
48330
- relationships?: JsonApiFilterViewPatchRelationships;
48331
- }
48332
-
48333
- export declare interface JsonApiFilterViewOutAttributes {
48334
- title: string;
48335
- description?: string;
48336
- tags?: Array<string>;
48337
- areRelationsValid?: boolean;
48338
- /**
48339
- * Indicator whether the filter view should by applied by default.
48340
- */
48341
- isDefault?: boolean;
48342
- /**
48343
- * The respective filter context.
48344
- */
48345
- content: object;
48455
+ attributes: JsonApiFilterViewInAttributes;
48456
+ relationships?: JsonApiFilterViewInRelationships;
48346
48457
  }
48347
48458
 
48348
48459
  export declare interface JsonApiFilterViewOutDocument {
@@ -48365,7 +48476,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
48365
48476
  export declare interface JsonApiFilterViewOutList {
48366
48477
  data: Array<JsonApiFilterViewOutWithLinks>;
48367
48478
  links?: ListLinks;
48368
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48479
+ meta?: JsonApiAggregatedFactOutListMeta;
48369
48480
  /**
48370
48481
  * Included resources
48371
48482
  */
@@ -48387,8 +48498,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
48387
48498
  * API identifier of an object
48388
48499
  */
48389
48500
  id: string;
48390
- attributes: JsonApiFilterViewOutAttributes;
48391
- relationships?: JsonApiFilterViewPatchRelationships;
48501
+ attributes: JsonApiFilterViewInAttributes;
48502
+ relationships?: JsonApiFilterViewInRelationships;
48392
48503
  links?: ObjectLinks;
48393
48504
  }
48394
48505
 
@@ -48411,7 +48522,7 @@ export declare interface JsonApiFilterViewPatch {
48411
48522
  */
48412
48523
  id: string;
48413
48524
  attributes: JsonApiFilterViewPatchAttributes;
48414
- relationships?: JsonApiFilterViewPatchRelationships;
48525
+ relationships?: JsonApiFilterViewInRelationships;
48415
48526
  }
48416
48527
 
48417
48528
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -48433,15 +48544,6 @@ export declare interface JsonApiFilterViewPatchDocument {
48433
48544
  data: JsonApiFilterViewPatch;
48434
48545
  }
48435
48546
 
48436
- export declare interface JsonApiFilterViewPatchRelationships {
48437
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
48438
- user?: JsonApiFilterViewPatchRelationshipsUser;
48439
- }
48440
-
48441
- export declare interface JsonApiFilterViewPatchRelationshipsUser {
48442
- data: JsonApiUserLinkage | null;
48443
- }
48444
-
48445
48547
  export declare const JsonApiFilterViewPatchTypeEnum: {
48446
48548
  readonly FILTER_VIEW: "filterView";
48447
48549
  };
@@ -48465,9 +48567,69 @@ export declare interface JsonApiIdentityProviderIn {
48465
48567
  * API identifier of an object
48466
48568
  */
48467
48569
  id: string;
48468
- attributes?: JsonApiIdentityProviderPatchAttributes;
48570
+ attributes?: JsonApiIdentityProviderInAttributes;
48469
48571
  }
48470
48572
 
48573
+ export declare interface JsonApiIdentityProviderInAttributes {
48574
+ /**
48575
+ * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
48576
+ */
48577
+ identifiers?: Array<string>;
48578
+ /**
48579
+ * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
48580
+ */
48581
+ customClaimMapping?: {
48582
+ [key: string]: string;
48583
+ };
48584
+ /**
48585
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
48586
+ */
48587
+ samlMetadata?: string;
48588
+ /**
48589
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
48590
+ */
48591
+ oauthClientId?: string;
48592
+ /**
48593
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
48594
+ */
48595
+ oauthClientSecret?: string;
48596
+ /**
48597
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
48598
+ */
48599
+ oauthIssuerLocation?: string;
48600
+ /**
48601
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
48602
+ */
48603
+ oauthIssuerId?: string;
48604
+ /**
48605
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
48606
+ */
48607
+ oauthSubjectIdClaim?: string;
48608
+ /**
48609
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
48610
+ */
48611
+ oauthCustomAuthAttributes?: {
48612
+ [key: string]: string;
48613
+ };
48614
+ /**
48615
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
48616
+ */
48617
+ oauthCustomScopes?: Array<string> | null;
48618
+ /**
48619
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
48620
+ */
48621
+ idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
48622
+ }
48623
+
48624
+ export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
48625
+ readonly MANAGED_IDP: "MANAGED_IDP";
48626
+ readonly FIM_IDP: "FIM_IDP";
48627
+ readonly DEX_IDP: "DEX_IDP";
48628
+ readonly CUSTOM_IDP: "CUSTOM_IDP";
48629
+ };
48630
+
48631
+ export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
48632
+
48471
48633
  export declare interface JsonApiIdentityProviderInDocument {
48472
48634
  data: JsonApiIdentityProviderIn;
48473
48635
  }
@@ -48570,7 +48732,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
48570
48732
  export declare interface JsonApiIdentityProviderOutList {
48571
48733
  data: Array<JsonApiIdentityProviderOutWithLinks>;
48572
48734
  links?: ListLinks;
48573
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48735
+ meta?: JsonApiAggregatedFactOutListMeta;
48574
48736
  }
48575
48737
 
48576
48738
  export declare const JsonApiIdentityProviderOutTypeEnum: {
@@ -48610,69 +48772,9 @@ export declare interface JsonApiIdentityProviderPatch {
48610
48772
  * API identifier of an object
48611
48773
  */
48612
48774
  id: string;
48613
- attributes?: JsonApiIdentityProviderPatchAttributes;
48614
- }
48615
-
48616
- export declare interface JsonApiIdentityProviderPatchAttributes {
48617
- /**
48618
- * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
48619
- */
48620
- identifiers?: Array<string>;
48621
- /**
48622
- * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
48623
- */
48624
- customClaimMapping?: {
48625
- [key: string]: string;
48626
- };
48627
- /**
48628
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
48629
- */
48630
- samlMetadata?: string;
48631
- /**
48632
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
48633
- */
48634
- oauthClientId?: string;
48635
- /**
48636
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
48637
- */
48638
- oauthClientSecret?: string;
48639
- /**
48640
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
48641
- */
48642
- oauthIssuerLocation?: string;
48643
- /**
48644
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
48645
- */
48646
- oauthIssuerId?: string;
48647
- /**
48648
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
48649
- */
48650
- oauthSubjectIdClaim?: string;
48651
- /**
48652
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
48653
- */
48654
- oauthCustomAuthAttributes?: {
48655
- [key: string]: string;
48656
- };
48657
- /**
48658
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
48659
- */
48660
- oauthCustomScopes?: Array<string> | null;
48661
- /**
48662
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
48663
- */
48664
- idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
48775
+ attributes?: JsonApiIdentityProviderInAttributes;
48665
48776
  }
48666
48777
 
48667
- export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
48668
- readonly MANAGED_IDP: "MANAGED_IDP";
48669
- readonly FIM_IDP: "FIM_IDP";
48670
- readonly DEX_IDP: "DEX_IDP";
48671
- readonly CUSTOM_IDP: "CUSTOM_IDP";
48672
- };
48673
-
48674
- export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
48675
-
48676
48778
  export declare interface JsonApiIdentityProviderPatchDocument {
48677
48779
  data: JsonApiIdentityProviderPatch;
48678
48780
  }
@@ -48695,7 +48797,11 @@ export declare interface JsonApiJwkIn {
48695
48797
  * API identifier of an object
48696
48798
  */
48697
48799
  id: string;
48698
- attributes?: JsonApiJwkPatchAttributes;
48800
+ attributes?: JsonApiJwkInAttributes;
48801
+ }
48802
+
48803
+ export declare interface JsonApiJwkInAttributes {
48804
+ content?: RsaSpecification;
48699
48805
  }
48700
48806
 
48701
48807
  export declare interface JsonApiJwkInDocument {
@@ -48720,7 +48826,7 @@ export declare interface JsonApiJwkOut {
48720
48826
  * API identifier of an object
48721
48827
  */
48722
48828
  id: string;
48723
- attributes?: JsonApiJwkPatchAttributes;
48829
+ attributes?: JsonApiJwkInAttributes;
48724
48830
  }
48725
48831
 
48726
48832
  export declare interface JsonApiJwkOutDocument {
@@ -48734,7 +48840,7 @@ export declare interface JsonApiJwkOutDocument {
48734
48840
  export declare interface JsonApiJwkOutList {
48735
48841
  data: Array<JsonApiJwkOutWithLinks>;
48736
48842
  links?: ListLinks;
48737
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48843
+ meta?: JsonApiAggregatedFactOutListMeta;
48738
48844
  }
48739
48845
 
48740
48846
  export declare const JsonApiJwkOutTypeEnum: {
@@ -48752,7 +48858,7 @@ export declare interface JsonApiJwkOutWithLinks {
48752
48858
  * API identifier of an object
48753
48859
  */
48754
48860
  id: string;
48755
- attributes?: JsonApiJwkPatchAttributes;
48861
+ attributes?: JsonApiJwkInAttributes;
48756
48862
  links?: ObjectLinks;
48757
48863
  }
48758
48864
 
@@ -48774,11 +48880,7 @@ export declare interface JsonApiJwkPatch {
48774
48880
  * API identifier of an object
48775
48881
  */
48776
48882
  id: string;
48777
- attributes?: JsonApiJwkPatchAttributes;
48778
- }
48779
-
48780
- export declare interface JsonApiJwkPatchAttributes {
48781
- content?: RsaSpecification;
48883
+ attributes?: JsonApiJwkInAttributes;
48782
48884
  }
48783
48885
 
48784
48886
  export declare interface JsonApiJwkPatchDocument {
@@ -48881,7 +48983,7 @@ export declare interface JsonApiLabelOutDocument {
48881
48983
  export declare interface JsonApiLabelOutList {
48882
48984
  data: Array<JsonApiLabelOutWithLinks>;
48883
48985
  links?: ListLinks;
48884
- meta?: JsonApiWorkspaceAutomationOutListMeta;
48986
+ meta?: JsonApiAggregatedFactOutListMeta;
48885
48987
  /**
48886
48988
  * Included resources
48887
48989
  */
@@ -49038,7 +49140,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
49038
49140
  export declare interface JsonApiLlmEndpointOutList {
49039
49141
  data: Array<JsonApiLlmEndpointOutWithLinks>;
49040
49142
  links?: ListLinks;
49041
- meta?: JsonApiWorkspaceAutomationOutListMeta;
49143
+ meta?: JsonApiAggregatedFactOutListMeta;
49042
49144
  }
49043
49145
 
49044
49146
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -49244,7 +49346,7 @@ export declare interface JsonApiMemoryItemOutDocument {
49244
49346
  export declare interface JsonApiMemoryItemOutList {
49245
49347
  data: Array<JsonApiMemoryItemOutWithLinks>;
49246
49348
  links?: ListLinks;
49247
- meta?: JsonApiWorkspaceAutomationOutListMeta;
49349
+ meta?: JsonApiAggregatedFactOutListMeta;
49248
49350
  /**
49249
49351
  * Included resources
49250
49352
  */
@@ -49459,7 +49561,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
49459
49561
  export declare interface JsonApiMetricOutList {
49460
49562
  data: Array<JsonApiMetricOutWithLinks>;
49461
49563
  links?: ListLinks;
49462
- meta?: JsonApiWorkspaceAutomationOutListMeta;
49564
+ meta?: JsonApiAggregatedFactOutListMeta;
49463
49565
  /**
49464
49566
  * Included resources
49465
49567
  */
@@ -49605,7 +49707,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
49605
49707
  export declare interface JsonApiNotificationChannelIdentifierOutList {
49606
49708
  data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
49607
49709
  links?: ListLinks;
49608
- meta?: JsonApiWorkspaceAutomationOutListMeta;
49710
+ meta?: JsonApiAggregatedFactOutListMeta;
49609
49711
  }
49610
49712
 
49611
49713
  export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
@@ -49645,7 +49747,7 @@ export declare interface JsonApiNotificationChannelIn {
49645
49747
  * API identifier of an object
49646
49748
  */
49647
49749
  id: string;
49648
- attributes?: JsonApiNotificationChannelPatchAttributes;
49750
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49649
49751
  }
49650
49752
 
49651
49753
  export declare interface JsonApiNotificationChannelInDocument {
@@ -49690,7 +49792,7 @@ export declare interface JsonApiNotificationChannelOut {
49690
49792
  export declare interface JsonApiNotificationChannelOutAttributes {
49691
49793
  name?: string | null;
49692
49794
  description?: string | null;
49693
- destination?: JsonApiNotificationChannelPatchAttributesDestination;
49795
+ destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
49694
49796
  destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
49695
49797
  /**
49696
49798
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
@@ -49757,7 +49859,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
49757
49859
  export declare interface JsonApiNotificationChannelOutList {
49758
49860
  data: Array<JsonApiNotificationChannelOutWithLinks>;
49759
49861
  links?: ListLinks;
49760
- meta?: JsonApiWorkspaceAutomationOutListMeta;
49862
+ meta?: JsonApiAggregatedFactOutListMeta;
49761
49863
  }
49762
49864
 
49763
49865
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -49797,13 +49899,38 @@ export declare interface JsonApiNotificationChannelPatch {
49797
49899
  * API identifier of an object
49798
49900
  */
49799
49901
  id: string;
49800
- attributes?: JsonApiNotificationChannelPatchAttributes;
49902
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49801
49903
  }
49802
49904
 
49803
- export declare interface JsonApiNotificationChannelPatchAttributes {
49905
+ export declare interface JsonApiNotificationChannelPatchDocument {
49906
+ data: JsonApiNotificationChannelPatch;
49907
+ }
49908
+
49909
+ export declare const JsonApiNotificationChannelPatchTypeEnum: {
49910
+ readonly NOTIFICATION_CHANNEL: "notificationChannel";
49911
+ };
49912
+
49913
+ export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
49914
+
49915
+ /**
49916
+ * JSON:API representation of notificationChannel entity.
49917
+ */
49918
+ export declare interface JsonApiNotificationChannelPostOptionalId {
49919
+ /**
49920
+ * Object type
49921
+ */
49922
+ type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
49923
+ /**
49924
+ * API identifier of an object
49925
+ */
49926
+ id?: string;
49927
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
49928
+ }
49929
+
49930
+ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
49804
49931
  name?: string | null;
49805
49932
  description?: string | null;
49806
- destination?: JsonApiNotificationChannelPatchAttributesDestination;
49933
+ destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
49807
49934
  /**
49808
49935
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
49809
49936
  */
@@ -49811,7 +49938,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
49811
49938
  /**
49812
49939
  * Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
49813
49940
  */
49814
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
49941
+ dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
49815
49942
  /**
49816
49943
  * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
49817
49944
  */
@@ -49819,66 +49946,41 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
49819
49946
  /**
49820
49947
  * Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
49821
49948
  */
49822
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
49949
+ allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
49823
49950
  /**
49824
49951
  * In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
49825
49952
  */
49826
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
49953
+ inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
49827
49954
  }
49828
49955
 
49829
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
49956
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
49830
49957
  readonly CREATOR: "CREATOR";
49831
49958
  readonly INTERNAL: "INTERNAL";
49832
49959
  readonly EXTERNAL: "EXTERNAL";
49833
49960
  };
49834
49961
 
49835
- export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
49962
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
49836
49963
 
49837
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
49964
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
49838
49965
  readonly HIDDEN: "HIDDEN";
49839
49966
  readonly INTERNAL_ONLY: "INTERNAL_ONLY";
49840
49967
  readonly ALL: "ALL";
49841
49968
  };
49842
49969
 
49843
- export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
49970
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
49844
49971
 
49845
49972
  /**
49846
- * @type JsonApiNotificationChannelPatchAttributesDestination
49973
+ * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
49847
49974
  * The destination where the notifications are to be sent.
49848
49975
  */
49849
- export declare type JsonApiNotificationChannelPatchAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
49976
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
49850
49977
 
49851
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
49978
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
49852
49979
  readonly DISABLED: "DISABLED";
49853
49980
  readonly ENABLED: "ENABLED";
49854
49981
  };
49855
49982
 
49856
- export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
49857
-
49858
- export declare interface JsonApiNotificationChannelPatchDocument {
49859
- data: JsonApiNotificationChannelPatch;
49860
- }
49861
-
49862
- export declare const JsonApiNotificationChannelPatchTypeEnum: {
49863
- readonly NOTIFICATION_CHANNEL: "notificationChannel";
49864
- };
49865
-
49866
- export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
49867
-
49868
- /**
49869
- * JSON:API representation of notificationChannel entity.
49870
- */
49871
- export declare interface JsonApiNotificationChannelPostOptionalId {
49872
- /**
49873
- * Object type
49874
- */
49875
- type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
49876
- /**
49877
- * API identifier of an object
49878
- */
49879
- id?: string;
49880
- attributes?: JsonApiNotificationChannelPatchAttributes;
49881
- }
49983
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
49882
49984
 
49883
49985
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
49884
49986
  data: JsonApiNotificationChannelPostOptionalId;
@@ -49990,8 +50092,8 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
49990
50092
  export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
49991
50093
 
49992
50094
  export declare interface JsonApiOrganizationOutRelationships {
49993
- bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
49994
- bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
50095
+ bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
50096
+ bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
49995
50097
  identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
49996
50098
  }
49997
50099
 
@@ -50062,9 +50164,55 @@ export declare interface JsonApiOrganizationSettingIn {
50062
50164
  * API identifier of an object
50063
50165
  */
50064
50166
  id: string;
50065
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50167
+ attributes?: JsonApiOrganizationSettingInAttributes;
50168
+ }
50169
+
50170
+ export declare interface JsonApiOrganizationSettingInAttributes {
50171
+ /**
50172
+ * Free-form JSON content. Maximum supported length is 15000 characters.
50173
+ */
50174
+ content?: object;
50175
+ type?: JsonApiOrganizationSettingInAttributesTypeEnum;
50066
50176
  }
50067
50177
 
50178
+ export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
50179
+ readonly TIMEZONE: "TIMEZONE";
50180
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
50181
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
50182
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
50183
+ readonly WHITE_LABELING: "WHITE_LABELING";
50184
+ readonly LOCALE: "LOCALE";
50185
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
50186
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
50187
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
50188
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
50189
+ readonly WEEK_START: "WEEK_START";
50190
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
50191
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
50192
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
50193
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
50194
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
50195
+ readonly ALERT: "ALERT";
50196
+ readonly SEPARATORS: "SEPARATORS";
50197
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
50198
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
50199
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
50200
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
50201
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
50202
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
50203
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
50204
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
50205
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
50206
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
50207
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
50208
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
50209
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
50210
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
50211
+ readonly DATA_LOCALE: "DATA_LOCALE";
50212
+ };
50213
+
50214
+ export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
50215
+
50068
50216
  export declare interface JsonApiOrganizationSettingInDocument {
50069
50217
  data: JsonApiOrganizationSettingIn;
50070
50218
  }
@@ -50087,7 +50235,7 @@ export declare interface JsonApiOrganizationSettingOut {
50087
50235
  * API identifier of an object
50088
50236
  */
50089
50237
  id: string;
50090
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50238
+ attributes?: JsonApiOrganizationSettingInAttributes;
50091
50239
  }
50092
50240
 
50093
50241
  export declare interface JsonApiOrganizationSettingOutDocument {
@@ -50101,7 +50249,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
50101
50249
  export declare interface JsonApiOrganizationSettingOutList {
50102
50250
  data: Array<JsonApiOrganizationSettingOutWithLinks>;
50103
50251
  links?: ListLinks;
50104
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50252
+ meta?: JsonApiAggregatedFactOutListMeta;
50105
50253
  }
50106
50254
 
50107
50255
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -50119,7 +50267,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
50119
50267
  * API identifier of an object
50120
50268
  */
50121
50269
  id: string;
50122
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50270
+ attributes?: JsonApiOrganizationSettingInAttributes;
50123
50271
  links?: ObjectLinks;
50124
50272
  }
50125
50273
 
@@ -50141,55 +50289,9 @@ export declare interface JsonApiOrganizationSettingPatch {
50141
50289
  * API identifier of an object
50142
50290
  */
50143
50291
  id: string;
50144
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50145
- }
50146
-
50147
- export declare interface JsonApiOrganizationSettingPatchAttributes {
50148
- /**
50149
- * Free-form JSON content. Maximum supported length is 15000 characters.
50150
- */
50151
- content?: object;
50152
- type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
50292
+ attributes?: JsonApiOrganizationSettingInAttributes;
50153
50293
  }
50154
50294
 
50155
- export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
50156
- readonly TIMEZONE: "TIMEZONE";
50157
- readonly ACTIVE_THEME: "ACTIVE_THEME";
50158
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
50159
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
50160
- readonly WHITE_LABELING: "WHITE_LABELING";
50161
- readonly LOCALE: "LOCALE";
50162
- readonly METADATA_LOCALE: "METADATA_LOCALE";
50163
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
50164
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
50165
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
50166
- readonly WEEK_START: "WEEK_START";
50167
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
50168
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
50169
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
50170
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
50171
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
50172
- readonly ALERT: "ALERT";
50173
- readonly SEPARATORS: "SEPARATORS";
50174
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
50175
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
50176
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
50177
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
50178
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
50179
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
50180
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
50181
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
50182
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
50183
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
50184
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
50185
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
50186
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
50187
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
50188
- readonly DATA_LOCALE: "DATA_LOCALE";
50189
- };
50190
-
50191
- export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = (typeof JsonApiOrganizationSettingPatchAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
50192
-
50193
50295
  export declare interface JsonApiOrganizationSettingPatchDocument {
50194
50296
  data: JsonApiOrganizationSettingPatch;
50195
50297
  }
@@ -50212,7 +50314,7 @@ export declare interface JsonApiThemeIn {
50212
50314
  * API identifier of an object
50213
50315
  */
50214
50316
  id: string;
50215
- attributes: JsonApiColorPaletteOutAttributes;
50317
+ attributes: JsonApiColorPaletteInAttributes;
50216
50318
  }
50217
50319
 
50218
50320
  export declare interface JsonApiThemeInDocument {
@@ -50237,7 +50339,7 @@ export declare interface JsonApiThemeOut {
50237
50339
  * API identifier of an object
50238
50340
  */
50239
50341
  id: string;
50240
- attributes: JsonApiColorPaletteOutAttributes;
50342
+ attributes: JsonApiColorPaletteInAttributes;
50241
50343
  }
50242
50344
 
50243
50345
  export declare interface JsonApiThemeOutDocument {
@@ -50251,7 +50353,7 @@ export declare interface JsonApiThemeOutDocument {
50251
50353
  export declare interface JsonApiThemeOutList {
50252
50354
  data: Array<JsonApiThemeOutWithLinks>;
50253
50355
  links?: ListLinks;
50254
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50356
+ meta?: JsonApiAggregatedFactOutListMeta;
50255
50357
  }
50256
50358
 
50257
50359
  export declare const JsonApiThemeOutTypeEnum: {
@@ -50269,7 +50371,7 @@ export declare interface JsonApiThemeOutWithLinks {
50269
50371
  * API identifier of an object
50270
50372
  */
50271
50373
  id: string;
50272
- attributes: JsonApiColorPaletteOutAttributes;
50374
+ attributes: JsonApiColorPaletteInAttributes;
50273
50375
  links?: ObjectLinks;
50274
50376
  }
50275
50377
 
@@ -50316,14 +50418,31 @@ export declare interface JsonApiUserDataFilterIn {
50316
50418
  * API identifier of an object
50317
50419
  */
50318
50420
  id: string;
50319
- attributes: JsonApiUserDataFilterOutAttributes;
50320
- relationships?: JsonApiUserDataFilterPatchRelationships;
50421
+ attributes: JsonApiUserDataFilterInAttributes;
50422
+ relationships?: JsonApiUserDataFilterInRelationships;
50423
+ }
50424
+
50425
+ export declare interface JsonApiUserDataFilterInAttributes {
50426
+ title?: string;
50427
+ description?: string;
50428
+ tags?: Array<string>;
50429
+ areRelationsValid?: boolean;
50430
+ maql: string;
50321
50431
  }
50322
50432
 
50323
50433
  export declare interface JsonApiUserDataFilterInDocument {
50324
50434
  data: JsonApiUserDataFilterIn;
50325
50435
  }
50326
50436
 
50437
+ export declare interface JsonApiUserDataFilterInRelationships {
50438
+ user?: JsonApiFilterViewInRelationshipsUser;
50439
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
50440
+ }
50441
+
50442
+ export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
50443
+ data: JsonApiUserGroupLinkage | null;
50444
+ }
50445
+
50327
50446
  export declare const JsonApiUserDataFilterInTypeEnum: {
50328
50447
  readonly USER_DATA_FILTER: "userDataFilter";
50329
50448
  };
@@ -50343,18 +50462,10 @@ export declare interface JsonApiUserDataFilterOut {
50343
50462
  */
50344
50463
  id: string;
50345
50464
  meta?: JsonApiVisualizationObjectOutMeta;
50346
- attributes: JsonApiUserDataFilterOutAttributes;
50465
+ attributes: JsonApiUserDataFilterInAttributes;
50347
50466
  relationships?: JsonApiUserDataFilterOutRelationships;
50348
50467
  }
50349
50468
 
50350
- export declare interface JsonApiUserDataFilterOutAttributes {
50351
- title?: string;
50352
- description?: string;
50353
- tags?: Array<string>;
50354
- areRelationsValid?: boolean;
50355
- maql: string;
50356
- }
50357
-
50358
50469
  export declare interface JsonApiUserDataFilterOutDocument {
50359
50470
  data: JsonApiUserDataFilterOut;
50360
50471
  links?: ObjectLinks;
@@ -50375,7 +50486,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
50375
50486
  export declare interface JsonApiUserDataFilterOutList {
50376
50487
  data: Array<JsonApiUserDataFilterOutWithLinks>;
50377
50488
  links?: ListLinks;
50378
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50489
+ meta?: JsonApiAggregatedFactOutListMeta;
50379
50490
  /**
50380
50491
  * Included resources
50381
50492
  */
@@ -50383,8 +50494,8 @@ export declare interface JsonApiUserDataFilterOutList {
50383
50494
  }
50384
50495
 
50385
50496
  export declare interface JsonApiUserDataFilterOutRelationships {
50386
- user?: JsonApiFilterViewPatchRelationshipsUser;
50387
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
50497
+ user?: JsonApiFilterViewInRelationshipsUser;
50498
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
50388
50499
  facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
50389
50500
  attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
50390
50501
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
@@ -50408,7 +50519,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
50408
50519
  */
50409
50520
  id: string;
50410
50521
  meta?: JsonApiVisualizationObjectOutMeta;
50411
- attributes: JsonApiUserDataFilterOutAttributes;
50522
+ attributes: JsonApiUserDataFilterInAttributes;
50412
50523
  relationships?: JsonApiUserDataFilterOutRelationships;
50413
50524
  links?: ObjectLinks;
50414
50525
  }
@@ -50432,7 +50543,7 @@ export declare interface JsonApiUserDataFilterPatch {
50432
50543
  */
50433
50544
  id: string;
50434
50545
  attributes: JsonApiUserDataFilterPatchAttributes;
50435
- relationships?: JsonApiUserDataFilterPatchRelationships;
50546
+ relationships?: JsonApiUserDataFilterInRelationships;
50436
50547
  }
50437
50548
 
50438
50549
  export declare interface JsonApiUserDataFilterPatchAttributes {
@@ -50447,15 +50558,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
50447
50558
  data: JsonApiUserDataFilterPatch;
50448
50559
  }
50449
50560
 
50450
- export declare interface JsonApiUserDataFilterPatchRelationships {
50451
- user?: JsonApiFilterViewPatchRelationshipsUser;
50452
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
50453
- }
50454
-
50455
- export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
50456
- data: JsonApiUserGroupLinkage | null;
50457
- }
50458
-
50459
50561
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
50460
50562
  readonly USER_DATA_FILTER: "userDataFilter";
50461
50563
  };
@@ -50474,8 +50576,8 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
50474
50576
  * API identifier of an object
50475
50577
  */
50476
50578
  id?: string;
50477
- attributes: JsonApiUserDataFilterOutAttributes;
50478
- relationships?: JsonApiUserDataFilterPatchRelationships;
50579
+ attributes: JsonApiUserDataFilterInAttributes;
50580
+ relationships?: JsonApiUserDataFilterInRelationships;
50479
50581
  }
50480
50582
 
50481
50583
  export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
@@ -50500,14 +50602,29 @@ export declare interface JsonApiUserGroupIn {
50500
50602
  * API identifier of an object
50501
50603
  */
50502
50604
  id: string;
50503
- attributes?: JsonApiUserGroupPatchAttributes;
50504
- relationships?: JsonApiUserGroupPatchRelationships;
50605
+ attributes?: JsonApiUserGroupInAttributes;
50606
+ relationships?: JsonApiUserGroupInRelationships;
50607
+ }
50608
+
50609
+ export declare interface JsonApiUserGroupInAttributes {
50610
+ name?: string;
50505
50611
  }
50506
50612
 
50507
50613
  export declare interface JsonApiUserGroupInDocument {
50508
50614
  data: JsonApiUserGroupIn;
50509
50615
  }
50510
50616
 
50617
+ export declare interface JsonApiUserGroupInRelationships {
50618
+ parents?: JsonApiUserGroupInRelationshipsParents;
50619
+ }
50620
+
50621
+ export declare interface JsonApiUserGroupInRelationshipsParents {
50622
+ /**
50623
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50624
+ */
50625
+ data: Array<JsonApiUserGroupLinkage>;
50626
+ }
50627
+
50511
50628
  export declare const JsonApiUserGroupInTypeEnum: {
50512
50629
  readonly USER_GROUP: "userGroup";
50513
50630
  };
@@ -50540,8 +50657,8 @@ export declare interface JsonApiUserGroupOut {
50540
50657
  * API identifier of an object
50541
50658
  */
50542
50659
  id: string;
50543
- attributes?: JsonApiUserGroupPatchAttributes;
50544
- relationships?: JsonApiUserGroupPatchRelationships;
50660
+ attributes?: JsonApiUserGroupInAttributes;
50661
+ relationships?: JsonApiUserGroupInRelationships;
50545
50662
  }
50546
50663
 
50547
50664
  export declare interface JsonApiUserGroupOutDocument {
@@ -50559,7 +50676,7 @@ export declare interface JsonApiUserGroupOutDocument {
50559
50676
  export declare interface JsonApiUserGroupOutList {
50560
50677
  data: Array<JsonApiUserGroupOutWithLinks>;
50561
50678
  links?: ListLinks;
50562
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50679
+ meta?: JsonApiAggregatedFactOutListMeta;
50563
50680
  /**
50564
50681
  * Included resources
50565
50682
  */
@@ -50581,8 +50698,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
50581
50698
  * API identifier of an object
50582
50699
  */
50583
50700
  id: string;
50584
- attributes?: JsonApiUserGroupPatchAttributes;
50585
- relationships?: JsonApiUserGroupPatchRelationships;
50701
+ attributes?: JsonApiUserGroupInAttributes;
50702
+ relationships?: JsonApiUserGroupInRelationships;
50586
50703
  links?: ObjectLinks;
50587
50704
  }
50588
50705
 
@@ -50604,29 +50721,14 @@ export declare interface JsonApiUserGroupPatch {
50604
50721
  * API identifier of an object
50605
50722
  */
50606
50723
  id: string;
50607
- attributes?: JsonApiUserGroupPatchAttributes;
50608
- relationships?: JsonApiUserGroupPatchRelationships;
50609
- }
50610
-
50611
- export declare interface JsonApiUserGroupPatchAttributes {
50612
- name?: string;
50724
+ attributes?: JsonApiUserGroupInAttributes;
50725
+ relationships?: JsonApiUserGroupInRelationships;
50613
50726
  }
50614
50727
 
50615
50728
  export declare interface JsonApiUserGroupPatchDocument {
50616
50729
  data: JsonApiUserGroupPatch;
50617
50730
  }
50618
50731
 
50619
- export declare interface JsonApiUserGroupPatchRelationships {
50620
- parents?: JsonApiUserGroupPatchRelationshipsParents;
50621
- }
50622
-
50623
- export declare interface JsonApiUserGroupPatchRelationshipsParents {
50624
- /**
50625
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
50626
- */
50627
- data: Array<JsonApiUserGroupLinkage>;
50628
- }
50629
-
50630
50732
  export declare const JsonApiUserGroupPatchTypeEnum: {
50631
50733
  readonly USER_GROUP: "userGroup";
50632
50734
  };
@@ -50679,7 +50781,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
50679
50781
  export declare interface JsonApiUserIdentifierOutList {
50680
50782
  data: Array<JsonApiUserIdentifierOutWithLinks>;
50681
50783
  links?: ListLinks;
50682
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50784
+ meta?: JsonApiAggregatedFactOutListMeta;
50683
50785
  }
50684
50786
 
50685
50787
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -50719,14 +50821,25 @@ export declare interface JsonApiUserIn {
50719
50821
  * API identifier of an object
50720
50822
  */
50721
50823
  id: string;
50722
- attributes?: JsonApiUserPatchAttributes;
50723
- relationships?: JsonApiUserPatchRelationships;
50824
+ attributes?: JsonApiUserInAttributes;
50825
+ relationships?: JsonApiUserInRelationships;
50826
+ }
50827
+
50828
+ export declare interface JsonApiUserInAttributes {
50829
+ authenticationId?: string;
50830
+ firstname?: string;
50831
+ lastname?: string;
50832
+ email?: string;
50724
50833
  }
50725
50834
 
50726
50835
  export declare interface JsonApiUserInDocument {
50727
50836
  data: JsonApiUserIn;
50728
50837
  }
50729
50838
 
50839
+ export declare interface JsonApiUserInRelationships {
50840
+ userGroups?: JsonApiUserGroupInRelationshipsParents;
50841
+ }
50842
+
50730
50843
  export declare const JsonApiUserInTypeEnum: {
50731
50844
  readonly USER: "user";
50732
50845
  };
@@ -50759,8 +50872,8 @@ export declare interface JsonApiUserOut {
50759
50872
  * API identifier of an object
50760
50873
  */
50761
50874
  id: string;
50762
- attributes?: JsonApiUserPatchAttributes;
50763
- relationships?: JsonApiUserPatchRelationships;
50875
+ attributes?: JsonApiUserInAttributes;
50876
+ relationships?: JsonApiUserInRelationships;
50764
50877
  }
50765
50878
 
50766
50879
  export declare interface JsonApiUserOutDocument {
@@ -50778,7 +50891,7 @@ export declare interface JsonApiUserOutDocument {
50778
50891
  export declare interface JsonApiUserOutList {
50779
50892
  data: Array<JsonApiUserOutWithLinks>;
50780
50893
  links?: ListLinks;
50781
- meta?: JsonApiWorkspaceAutomationOutListMeta;
50894
+ meta?: JsonApiAggregatedFactOutListMeta;
50782
50895
  /**
50783
50896
  * Included resources
50784
50897
  */
@@ -50800,8 +50913,8 @@ export declare interface JsonApiUserOutWithLinks {
50800
50913
  * API identifier of an object
50801
50914
  */
50802
50915
  id: string;
50803
- attributes?: JsonApiUserPatchAttributes;
50804
- relationships?: JsonApiUserPatchRelationships;
50916
+ attributes?: JsonApiUserInAttributes;
50917
+ relationships?: JsonApiUserInRelationships;
50805
50918
  links?: ObjectLinks;
50806
50919
  }
50807
50920
 
@@ -50823,25 +50936,14 @@ export declare interface JsonApiUserPatch {
50823
50936
  * API identifier of an object
50824
50937
  */
50825
50938
  id: string;
50826
- attributes?: JsonApiUserPatchAttributes;
50827
- relationships?: JsonApiUserPatchRelationships;
50828
- }
50829
-
50830
- export declare interface JsonApiUserPatchAttributes {
50831
- authenticationId?: string;
50832
- firstname?: string;
50833
- lastname?: string;
50834
- email?: string;
50939
+ attributes?: JsonApiUserInAttributes;
50940
+ relationships?: JsonApiUserInRelationships;
50835
50941
  }
50836
50942
 
50837
50943
  export declare interface JsonApiUserPatchDocument {
50838
50944
  data: JsonApiUserPatch;
50839
50945
  }
50840
50946
 
50841
- export declare interface JsonApiUserPatchRelationships {
50842
- userGroups?: JsonApiUserGroupPatchRelationshipsParents;
50843
- }
50844
-
50845
50947
  export declare const JsonApiUserPatchTypeEnum: {
50846
50948
  readonly USER: "user";
50847
50949
  };
@@ -50860,7 +50962,7 @@ export declare interface JsonApiUserSettingIn {
50860
50962
  * API identifier of an object
50861
50963
  */
50862
50964
  id: string;
50863
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50965
+ attributes?: JsonApiOrganizationSettingInAttributes;
50864
50966
  }
50865
50967
 
50866
50968
  export declare interface JsonApiUserSettingInDocument {
@@ -50885,7 +50987,7 @@ export declare interface JsonApiUserSettingOut {
50885
50987
  * API identifier of an object
50886
50988
  */
50887
50989
  id: string;
50888
- attributes?: JsonApiOrganizationSettingPatchAttributes;
50990
+ attributes?: JsonApiOrganizationSettingInAttributes;
50889
50991
  }
50890
50992
 
50891
50993
  export declare interface JsonApiUserSettingOutDocument {
@@ -50899,7 +51001,7 @@ export declare interface JsonApiUserSettingOutDocument {
50899
51001
  export declare interface JsonApiUserSettingOutList {
50900
51002
  data: Array<JsonApiUserSettingOutWithLinks>;
50901
51003
  links?: ListLinks;
50902
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51004
+ meta?: JsonApiAggregatedFactOutListMeta;
50903
51005
  }
50904
51006
 
50905
51007
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -50917,7 +51019,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
50917
51019
  * API identifier of an object
50918
51020
  */
50919
51021
  id: string;
50920
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51022
+ attributes?: JsonApiOrganizationSettingInAttributes;
50921
51023
  links?: ObjectLinks;
50922
51024
  }
50923
51025
 
@@ -51024,7 +51126,7 @@ export declare interface JsonApiVisualizationObjectOutDocument {
51024
51126
  export declare interface JsonApiVisualizationObjectOutList {
51025
51127
  data: Array<JsonApiVisualizationObjectOutWithLinks>;
51026
51128
  links?: ListLinks;
51027
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51129
+ meta?: JsonApiAggregatedFactOutListMeta;
51028
51130
  /**
51029
51131
  * Included resources
51030
51132
  */
@@ -51218,25 +51320,21 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
51218
51320
  export declare interface JsonApiWorkspaceAutomationOutList {
51219
51321
  data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
51220
51322
  links?: ListLinks;
51221
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51323
+ meta?: JsonApiAggregatedFactOutListMeta;
51222
51324
  /**
51223
51325
  * Included resources
51224
51326
  */
51225
51327
  included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
51226
51328
  }
51227
51329
 
51228
- export declare interface JsonApiWorkspaceAutomationOutListMeta {
51229
- page?: PageMetadata;
51230
- }
51231
-
51232
51330
  export declare interface JsonApiWorkspaceAutomationOutRelationships {
51233
- workspace?: JsonApiWorkspacePatchRelationshipsParent;
51234
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
51235
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
51331
+ workspace?: JsonApiWorkspaceInRelationshipsParent;
51332
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
51333
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
51236
51334
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51237
51335
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
51238
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
51239
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
51336
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
51337
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
51240
51338
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
51241
51339
  }
51242
51340
 
@@ -51344,7 +51442,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
51344
51442
  export declare interface JsonApiWorkspaceDataFilterOutList {
51345
51443
  data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
51346
51444
  links?: ListLinks;
51347
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51445
+ meta?: JsonApiAggregatedFactOutListMeta;
51348
51446
  /**
51349
51447
  * Included resources
51350
51448
  */
@@ -51427,14 +51525,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
51427
51525
  * API identifier of an object
51428
51526
  */
51429
51527
  id: string;
51430
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
51431
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
51528
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51529
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51530
+ }
51531
+
51532
+ export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
51533
+ title?: string;
51534
+ description?: string;
51535
+ filterValues?: Array<string>;
51432
51536
  }
51433
51537
 
51434
51538
  export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
51435
51539
  data: JsonApiWorkspaceDataFilterSettingIn;
51436
51540
  }
51437
51541
 
51542
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
51543
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
51544
+ }
51545
+
51546
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
51547
+ data: JsonApiWorkspaceDataFilterLinkage | null;
51548
+ }
51549
+
51438
51550
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
51439
51551
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
51440
51552
  };
@@ -51468,8 +51580,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
51468
51580
  */
51469
51581
  id: string;
51470
51582
  meta?: JsonApiVisualizationObjectOutMeta;
51471
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
51472
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
51583
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51584
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51473
51585
  }
51474
51586
 
51475
51587
  export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
@@ -51487,7 +51599,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
51487
51599
  export declare interface JsonApiWorkspaceDataFilterSettingOutList {
51488
51600
  data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
51489
51601
  links?: ListLinks;
51490
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51602
+ meta?: JsonApiAggregatedFactOutListMeta;
51491
51603
  /**
51492
51604
  * Included resources
51493
51605
  */
@@ -51510,8 +51622,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
51510
51622
  */
51511
51623
  id: string;
51512
51624
  meta?: JsonApiVisualizationObjectOutMeta;
51513
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
51514
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
51625
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51626
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51515
51627
  links?: ObjectLinks;
51516
51628
  }
51517
51629
 
@@ -51533,28 +51645,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
51533
51645
  * API identifier of an object
51534
51646
  */
51535
51647
  id: string;
51536
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
51537
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
51538
- }
51539
-
51540
- export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
51541
- title?: string;
51542
- description?: string;
51543
- filterValues?: Array<string>;
51648
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
51649
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
51544
51650
  }
51545
51651
 
51546
51652
  export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
51547
51653
  data: JsonApiWorkspaceDataFilterSettingPatch;
51548
51654
  }
51549
51655
 
51550
- export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
51551
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
51552
- }
51553
-
51554
- export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
51555
- data: JsonApiWorkspaceDataFilterLinkage | null;
51556
- }
51557
-
51558
51656
  export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
51559
51657
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
51560
51658
  };
@@ -51573,14 +51671,56 @@ export declare interface JsonApiWorkspaceIn {
51573
51671
  * API identifier of an object
51574
51672
  */
51575
51673
  id: string;
51576
- attributes?: JsonApiWorkspacePatchAttributes;
51577
- relationships?: JsonApiWorkspacePatchRelationships;
51674
+ attributes?: JsonApiWorkspaceInAttributes;
51675
+ relationships?: JsonApiWorkspaceInRelationships;
51676
+ }
51677
+
51678
+ export declare interface JsonApiWorkspaceInAttributes {
51679
+ name?: string | null;
51680
+ /**
51681
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51682
+ * @deprecated
51683
+ */
51684
+ earlyAccess?: string | null;
51685
+ /**
51686
+ * The early access feature identifiers. They are used to enable experimental features.
51687
+ */
51688
+ earlyAccessValues?: Array<string> | null;
51689
+ description?: string | null;
51690
+ /**
51691
+ * Custom prefix of entity identifiers in workspace
51692
+ */
51693
+ prefix?: string | null;
51694
+ cacheExtraLimit?: number;
51695
+ dataSource?: JsonApiWorkspaceInAttributesDataSource;
51696
+ }
51697
+
51698
+ /**
51699
+ * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
51700
+ */
51701
+ export declare interface JsonApiWorkspaceInAttributesDataSource {
51702
+ /**
51703
+ * The ID of the used data source.
51704
+ */
51705
+ id: string;
51706
+ /**
51707
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
51708
+ */
51709
+ schemaPath?: Array<string>;
51578
51710
  }
51579
51711
 
51580
51712
  export declare interface JsonApiWorkspaceInDocument {
51581
51713
  data: JsonApiWorkspaceIn;
51582
51714
  }
51583
51715
 
51716
+ export declare interface JsonApiWorkspaceInRelationships {
51717
+ parent?: JsonApiWorkspaceInRelationshipsParent;
51718
+ }
51719
+
51720
+ export declare interface JsonApiWorkspaceInRelationshipsParent {
51721
+ data: JsonApiWorkspaceLinkage | null;
51722
+ }
51723
+
51584
51724
  export declare const JsonApiWorkspaceInTypeEnum: {
51585
51725
  readonly WORKSPACE: "workspace";
51586
51726
  };
@@ -51614,8 +51754,8 @@ export declare interface JsonApiWorkspaceOut {
51614
51754
  */
51615
51755
  id: string;
51616
51756
  meta?: JsonApiWorkspaceOutMeta;
51617
- attributes?: JsonApiWorkspacePatchAttributes;
51618
- relationships?: JsonApiWorkspacePatchRelationships;
51757
+ attributes?: JsonApiWorkspaceInAttributes;
51758
+ relationships?: JsonApiWorkspaceInRelationships;
51619
51759
  }
51620
51760
 
51621
51761
  export declare interface JsonApiWorkspaceOutDocument {
@@ -51633,7 +51773,7 @@ export declare interface JsonApiWorkspaceOutDocument {
51633
51773
  export declare interface JsonApiWorkspaceOutList {
51634
51774
  data: Array<JsonApiWorkspaceOutWithLinks>;
51635
51775
  links?: ListLinks;
51636
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51776
+ meta?: JsonApiAggregatedFactOutListMeta;
51637
51777
  /**
51638
51778
  * Included resources
51639
51779
  */
@@ -51709,8 +51849,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
51709
51849
  */
51710
51850
  id: string;
51711
51851
  meta?: JsonApiWorkspaceOutMeta;
51712
- attributes?: JsonApiWorkspacePatchAttributes;
51713
- relationships?: JsonApiWorkspacePatchRelationships;
51852
+ attributes?: JsonApiWorkspaceInAttributes;
51853
+ relationships?: JsonApiWorkspaceInRelationships;
51714
51854
  links?: ObjectLinks;
51715
51855
  }
51716
51856
 
@@ -51732,56 +51872,14 @@ export declare interface JsonApiWorkspacePatch {
51732
51872
  * API identifier of an object
51733
51873
  */
51734
51874
  id: string;
51735
- attributes?: JsonApiWorkspacePatchAttributes;
51736
- relationships?: JsonApiWorkspacePatchRelationships;
51737
- }
51738
-
51739
- export declare interface JsonApiWorkspacePatchAttributes {
51740
- name?: string | null;
51741
- /**
51742
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51743
- * @deprecated
51744
- */
51745
- earlyAccess?: string | null;
51746
- /**
51747
- * The early access feature identifiers. They are used to enable experimental features.
51748
- */
51749
- earlyAccessValues?: Array<string> | null;
51750
- description?: string | null;
51751
- /**
51752
- * Custom prefix of entity identifiers in workspace
51753
- */
51754
- prefix?: string | null;
51755
- cacheExtraLimit?: number;
51756
- dataSource?: JsonApiWorkspacePatchAttributesDataSource;
51757
- }
51758
-
51759
- /**
51760
- * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
51761
- */
51762
- export declare interface JsonApiWorkspacePatchAttributesDataSource {
51763
- /**
51764
- * The ID of the used data source.
51765
- */
51766
- id: string;
51767
- /**
51768
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
51769
- */
51770
- schemaPath?: Array<string>;
51875
+ attributes?: JsonApiWorkspaceInAttributes;
51876
+ relationships?: JsonApiWorkspaceInRelationships;
51771
51877
  }
51772
51878
 
51773
51879
  export declare interface JsonApiWorkspacePatchDocument {
51774
51880
  data: JsonApiWorkspacePatch;
51775
51881
  }
51776
51882
 
51777
- export declare interface JsonApiWorkspacePatchRelationships {
51778
- parent?: JsonApiWorkspacePatchRelationshipsParent;
51779
- }
51780
-
51781
- export declare interface JsonApiWorkspacePatchRelationshipsParent {
51782
- data: JsonApiWorkspaceLinkage | null;
51783
- }
51784
-
51785
51883
  export declare const JsonApiWorkspacePatchTypeEnum: {
51786
51884
  readonly WORKSPACE: "workspace";
51787
51885
  };
@@ -51800,7 +51898,7 @@ export declare interface JsonApiWorkspaceSettingIn {
51800
51898
  * API identifier of an object
51801
51899
  */
51802
51900
  id: string;
51803
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51901
+ attributes?: JsonApiOrganizationSettingInAttributes;
51804
51902
  }
51805
51903
 
51806
51904
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -51826,7 +51924,7 @@ export declare interface JsonApiWorkspaceSettingOut {
51826
51924
  */
51827
51925
  id: string;
51828
51926
  meta?: JsonApiVisualizationObjectOutMeta;
51829
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51927
+ attributes?: JsonApiOrganizationSettingInAttributes;
51830
51928
  }
51831
51929
 
51832
51930
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -51840,7 +51938,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
51840
51938
  export declare interface JsonApiWorkspaceSettingOutList {
51841
51939
  data: Array<JsonApiWorkspaceSettingOutWithLinks>;
51842
51940
  links?: ListLinks;
51843
- meta?: JsonApiWorkspaceAutomationOutListMeta;
51941
+ meta?: JsonApiAggregatedFactOutListMeta;
51844
51942
  }
51845
51943
 
51846
51944
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -51859,7 +51957,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
51859
51957
  */
51860
51958
  id: string;
51861
51959
  meta?: JsonApiVisualizationObjectOutMeta;
51862
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51960
+ attributes?: JsonApiOrganizationSettingInAttributes;
51863
51961
  links?: ObjectLinks;
51864
51962
  }
51865
51963
 
@@ -51881,7 +51979,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
51881
51979
  * API identifier of an object
51882
51980
  */
51883
51981
  id: string;
51884
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51982
+ attributes?: JsonApiOrganizationSettingInAttributes;
51885
51983
  }
51886
51984
 
51887
51985
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -51906,7 +52004,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
51906
52004
  * API identifier of an object
51907
52005
  */
51908
52006
  id?: string;
51909
- attributes?: JsonApiOrganizationSettingPatchAttributes;
52007
+ attributes?: JsonApiOrganizationSettingInAttributes;
51910
52008
  }
51911
52009
 
51912
52010
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -68846,6 +68944,10 @@ export declare interface ScanApiSqlColumn {
68846
68944
  * Column type
68847
68945
  */
68848
68946
  dataType: ScanApiSqlColumnDataTypeEnum;
68947
+ /**
68948
+ * Column description/comment from database
68949
+ */
68950
+ description?: string;
68849
68951
  }
68850
68952
 
68851
68953
  export declare const ScanApiSqlColumnDataTypeEnum: {
@@ -69029,6 +69131,10 @@ export declare interface ScanModelDeclarativeColumn {
69029
69131
  * Referenced table (Foreign key)
69030
69132
  */
69031
69133
  referencedTableColumn?: string;
69134
+ /**
69135
+ * Column description/comment from database
69136
+ */
69137
+ description?: string;
69032
69138
  }
69033
69139
 
69034
69140
  export declare const ScanModelDeclarativeColumnDataTypeEnum: {
@@ -70398,7 +70504,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
70398
70504
  /**
70399
70505
  * Tiger GenAI client factory
70400
70506
  */
70401
- export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
70507
+ export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers">;
70402
70508
 
70403
70509
  export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
70404
70510