@gooddata/api-client-tiger 10.27.0-alpha.5 → 10.27.0-alpha.51

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.
@@ -3209,7 +3209,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
3209
3209
  */
3210
3210
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AnomalyDetectionResult, any>>;
3211
3211
  /**
3212
- * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3212
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
3213
3213
  * @summary Applies all the given cancel tokens.
3214
3214
  * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3215
3215
  * @param {*} [options] Override http request option.
@@ -3400,7 +3400,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
3400
3400
  */
3401
3401
  anomalyDetectionResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
3402
3402
  /**
3403
- * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3403
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
3404
3404
  * @summary Applies all the given cancel tokens.
3405
3405
  * @param {string} workspaceId Workspace identifier
3406
3406
  * @param {AfmCancelTokens} afmCancelTokens
@@ -3602,7 +3602,7 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
3602
3602
  */
3603
3603
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<AnomalyDetectionResult>;
3604
3604
  /**
3605
- * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3605
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
3606
3606
  * @summary Applies all the given cancel tokens.
3607
3607
  * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3608
3608
  * @param {*} [options] Override http request option.
@@ -3779,7 +3779,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
3779
3779
  */
3780
3780
  anomalyDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnomalyDetectionResult>>;
3781
3781
  /**
3782
- * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3782
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
3783
3783
  * @summary Applies all the given cancel tokens.
3784
3784
  * @param {string} workspaceId Workspace identifier
3785
3785
  * @param {AfmCancelTokens} afmCancelTokens
@@ -3988,7 +3988,7 @@ export declare interface AfmActionsApiInterface {
3988
3988
  */
3989
3989
  anomalyDetectionResult(requestParameters: ActionsApiAnomalyDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<AnomalyDetectionResult>;
3990
3990
  /**
3991
- * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
3991
+ * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
3992
3992
  * @summary Applies all the given cancel tokens.
3993
3993
  * @param {ActionsApiCancelExecutionsRequest} requestParameters Request parameters.
3994
3994
  * @param {*} [options] Override http request option.
@@ -4213,11 +4213,13 @@ export declare interface AfmAttributeItem {
4213
4213
  */
4214
4214
  export declare interface AfmCancelTokens {
4215
4215
  /**
4216
- * Token ids to be used in the cancellation.
4217
- * @type {Array<string>}
4216
+ * resultId to cancel token pairs
4217
+ * @type {{ [key: string]: string; }}
4218
4218
  * @memberof AfmCancelTokens
4219
4219
  */
4220
- tokenIds: Array<string>;
4220
+ resultIdToCancelTokenPairs: {
4221
+ [key: string]: string;
4222
+ };
4221
4223
  }
4222
4224
 
4223
4225
  /**
@@ -19341,10 +19343,11 @@ export declare const DeclarativeDataSourceTypeEnum: {
19341
19343
  readonly MYSQL: "MYSQL";
19342
19344
  readonly MARIADB: "MARIADB";
19343
19345
  readonly ORACLE: "ORACLE";
19344
- readonly PINOT: "PINOT";
19345
19346
  readonly SINGLESTORE: "SINGLESTORE";
19346
19347
  readonly MOTHERDUCK: "MOTHERDUCK";
19347
19348
  readonly FLEXCONNECT: "FLEXCONNECT";
19349
+ readonly STARROCKS: "STARROCKS";
19350
+ readonly ATHENA: "ATHENA";
19348
19351
  };
19349
19352
 
19350
19353
  export declare type DeclarativeDataSourceTypeEnum = typeof DeclarativeDataSourceTypeEnum[keyof typeof DeclarativeDataSourceTypeEnum];
@@ -20543,6 +20546,7 @@ export declare const DeclarativeSingleWorkspacePermissionNameEnum: {
20543
20546
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
20544
20547
  readonly EXPORT_PDF: "EXPORT_PDF";
20545
20548
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
20549
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
20546
20550
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
20547
20551
  readonly VIEW: "VIEW";
20548
20552
  };
@@ -21159,7 +21163,7 @@ export declare interface DeclarativeWorkspaceDataFilter {
21159
21163
  * @type {WorkspaceIdentifier}
21160
21164
  * @memberof DeclarativeWorkspaceDataFilter
21161
21165
  */
21162
- workspace?: WorkspaceIdentifier;
21166
+ workspace: WorkspaceIdentifier;
21163
21167
  }
21164
21168
 
21165
21169
  /**
@@ -21311,6 +21315,7 @@ export declare const DeclarativeWorkspaceHierarchyPermissionNameEnum: {
21311
21315
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
21312
21316
  readonly EXPORT_PDF: "EXPORT_PDF";
21313
21317
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
21318
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
21314
21319
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
21315
21320
  readonly VIEW: "VIEW";
21316
21321
  };
@@ -38132,6 +38137,44 @@ export declare interface ExecutionResult {
38132
38137
  * @memberof ExecutionResult
38133
38138
  */
38134
38139
  paging: ExecutionResultPaging;
38140
+ /**
38141
+ *
38142
+ * @type {ExecutionResultMetadata}
38143
+ * @memberof ExecutionResult
38144
+ */
38145
+ metadata: ExecutionResultMetadata;
38146
+ }
38147
+
38148
+ /**
38149
+ * A piece of extra information related to the results (e.g. debug information, warnings, etc.).
38150
+ * @export
38151
+ * @interface ExecutionResultDataSourceMessage
38152
+ */
38153
+ export declare interface ExecutionResultDataSourceMessage {
38154
+ /**
38155
+ * Id correlating different pieces of supplementary info together.
38156
+ * @type {string}
38157
+ * @memberof ExecutionResultDataSourceMessage
38158
+ */
38159
+ correlationId: string;
38160
+ /**
38161
+ * Information about what part of the system created this piece of supplementary info.
38162
+ * @type {string}
38163
+ * @memberof ExecutionResultDataSourceMessage
38164
+ */
38165
+ source: string;
38166
+ /**
38167
+ * Type of the supplementary info instance. There are currently no well-known values for this, but there might be some in the future.
38168
+ * @type {string}
38169
+ * @memberof ExecutionResultDataSourceMessage
38170
+ */
38171
+ type: string;
38172
+ /**
38173
+ * Data of this particular supplementary info item: a free-form JSON specific to the particular supplementary info item type.
38174
+ * @type {object}
38175
+ * @memberof ExecutionResultDataSourceMessage
38176
+ */
38177
+ data?: object;
38135
38178
  }
38136
38179
 
38137
38180
  /**
@@ -38167,6 +38210,20 @@ export declare interface ExecutionResultGrandTotal {
38167
38210
  */
38168
38211
  export declare type ExecutionResultHeader = AttributeExecutionResultHeader | MeasureExecutionResultHeader | TotalExecutionResultHeader;
38169
38212
 
38213
+ /**
38214
+ * Additional metadata for the particular execution result.
38215
+ * @export
38216
+ * @interface ExecutionResultMetadata
38217
+ */
38218
+ export declare interface ExecutionResultMetadata {
38219
+ /**
38220
+ * Additional information sent by the underlying data source.
38221
+ * @type {Array<ExecutionResultDataSourceMessage>}
38222
+ * @memberof ExecutionResultMetadata
38223
+ */
38224
+ dataSourceMessages: Array<ExecutionResultDataSourceMessage>;
38225
+ }
38226
+
38170
38227
  /**
38171
38228
  * A paging information related to the data presented in the execution result. These paging information are multi-dimensional.
38172
38229
  * @export
@@ -42223,10 +42280,48 @@ export declare interface JsonApiAnalyticalDashboardIn {
42223
42280
  id: string;
42224
42281
  /**
42225
42282
  *
42226
- * @type {JsonApiFilterContextOutAttributes}
42283
+ * @type {JsonApiAnalyticalDashboardInAttributes}
42227
42284
  * @memberof JsonApiAnalyticalDashboardIn
42228
42285
  */
42229
- attributes: JsonApiFilterContextOutAttributes;
42286
+ attributes: JsonApiAnalyticalDashboardInAttributes;
42287
+ }
42288
+
42289
+ /**
42290
+ *
42291
+ * @export
42292
+ * @interface JsonApiAnalyticalDashboardInAttributes
42293
+ */
42294
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
42295
+ /**
42296
+ *
42297
+ * @type {string}
42298
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42299
+ */
42300
+ title?: string;
42301
+ /**
42302
+ *
42303
+ * @type {string}
42304
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42305
+ */
42306
+ description?: string;
42307
+ /**
42308
+ *
42309
+ * @type {Array<string>}
42310
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42311
+ */
42312
+ tags?: Array<string>;
42313
+ /**
42314
+ *
42315
+ * @type {boolean}
42316
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42317
+ */
42318
+ areRelationsValid?: boolean;
42319
+ /**
42320
+ * Free-form JSON content. Maximum supported length is 250000 characters.
42321
+ * @type {object}
42322
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42323
+ */
42324
+ content: object;
42230
42325
  }
42231
42326
 
42232
42327
  /**
@@ -42703,10 +42798,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
42703
42798
  id?: string;
42704
42799
  /**
42705
42800
  *
42706
- * @type {JsonApiFilterContextOutAttributes}
42801
+ * @type {JsonApiAnalyticalDashboardInAttributes}
42707
42802
  * @memberof JsonApiAnalyticalDashboardPostOptionalId
42708
42803
  */
42709
- attributes: JsonApiFilterContextOutAttributes;
42804
+ attributes: JsonApiAnalyticalDashboardInAttributes;
42710
42805
  }
42711
42806
 
42712
42807
  /**
@@ -42926,10 +43021,48 @@ export declare interface JsonApiAttributeHierarchyIn {
42926
43021
  id: string;
42927
43022
  /**
42928
43023
  *
42929
- * @type {JsonApiAttributeHierarchyPatchAttributes}
43024
+ * @type {JsonApiAttributeHierarchyInAttributes}
42930
43025
  * @memberof JsonApiAttributeHierarchyIn
42931
43026
  */
42932
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
43027
+ attributes?: JsonApiAttributeHierarchyInAttributes;
43028
+ }
43029
+
43030
+ /**
43031
+ *
43032
+ * @export
43033
+ * @interface JsonApiAttributeHierarchyInAttributes
43034
+ */
43035
+ export declare interface JsonApiAttributeHierarchyInAttributes {
43036
+ /**
43037
+ *
43038
+ * @type {string}
43039
+ * @memberof JsonApiAttributeHierarchyInAttributes
43040
+ */
43041
+ title?: string;
43042
+ /**
43043
+ *
43044
+ * @type {string}
43045
+ * @memberof JsonApiAttributeHierarchyInAttributes
43046
+ */
43047
+ description?: string;
43048
+ /**
43049
+ *
43050
+ * @type {Array<string>}
43051
+ * @memberof JsonApiAttributeHierarchyInAttributes
43052
+ */
43053
+ tags?: Array<string>;
43054
+ /**
43055
+ *
43056
+ * @type {boolean}
43057
+ * @memberof JsonApiAttributeHierarchyInAttributes
43058
+ */
43059
+ areRelationsValid?: boolean;
43060
+ /**
43061
+ * Free-form JSON content. Maximum supported length is 15000 characters.
43062
+ * @type {object}
43063
+ * @memberof JsonApiAttributeHierarchyInAttributes
43064
+ */
43065
+ content?: object;
42933
43066
  }
42934
43067
 
42935
43068
  /**
@@ -43232,48 +43365,10 @@ export declare interface JsonApiAttributeHierarchyPatch {
43232
43365
  id: string;
43233
43366
  /**
43234
43367
  *
43235
- * @type {JsonApiAttributeHierarchyPatchAttributes}
43368
+ * @type {JsonApiAttributeHierarchyInAttributes}
43236
43369
  * @memberof JsonApiAttributeHierarchyPatch
43237
43370
  */
43238
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
43239
- }
43240
-
43241
- /**
43242
- *
43243
- * @export
43244
- * @interface JsonApiAttributeHierarchyPatchAttributes
43245
- */
43246
- export declare interface JsonApiAttributeHierarchyPatchAttributes {
43247
- /**
43248
- *
43249
- * @type {string}
43250
- * @memberof JsonApiAttributeHierarchyPatchAttributes
43251
- */
43252
- title?: string;
43253
- /**
43254
- *
43255
- * @type {string}
43256
- * @memberof JsonApiAttributeHierarchyPatchAttributes
43257
- */
43258
- description?: string;
43259
- /**
43260
- *
43261
- * @type {Array<string>}
43262
- * @memberof JsonApiAttributeHierarchyPatchAttributes
43263
- */
43264
- tags?: Array<string>;
43265
- /**
43266
- *
43267
- * @type {boolean}
43268
- * @memberof JsonApiAttributeHierarchyPatchAttributes
43269
- */
43270
- areRelationsValid?: boolean;
43271
- /**
43272
- * Free-form JSON content. Maximum supported length is 15000 characters.
43273
- * @type {object}
43274
- * @memberof JsonApiAttributeHierarchyPatchAttributes
43275
- */
43276
- content?: object;
43371
+ attributes?: JsonApiAttributeHierarchyInAttributes;
43277
43372
  }
43278
43373
 
43279
43374
  /**
@@ -43682,237 +43777,141 @@ export declare interface JsonApiAutomationIn {
43682
43777
  id: string;
43683
43778
  /**
43684
43779
  *
43685
- * @type {JsonApiAutomationPatchAttributes}
43780
+ * @type {JsonApiAutomationInAttributes}
43686
43781
  * @memberof JsonApiAutomationIn
43687
43782
  */
43688
- attributes?: JsonApiAutomationPatchAttributes;
43783
+ attributes?: JsonApiAutomationInAttributes;
43689
43784
  /**
43690
43785
  *
43691
- * @type {JsonApiAutomationPatchRelationships}
43786
+ * @type {JsonApiAutomationInRelationships}
43692
43787
  * @memberof JsonApiAutomationIn
43693
43788
  */
43694
- relationships?: JsonApiAutomationPatchRelationships;
43695
- }
43696
-
43697
- /**
43698
- *
43699
- * @export
43700
- * @interface JsonApiAutomationInDocument
43701
- */
43702
- export declare interface JsonApiAutomationInDocument {
43703
- /**
43704
- *
43705
- * @type {JsonApiAutomationIn}
43706
- * @memberof JsonApiAutomationInDocument
43707
- */
43708
- data: JsonApiAutomationIn;
43709
- }
43710
-
43711
- export declare const JsonApiAutomationInTypeEnum: {
43712
- readonly AUTOMATION: "automation";
43713
- };
43714
-
43715
- export declare type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[keyof typeof JsonApiAutomationInTypeEnum];
43716
-
43717
- /**
43718
- * The \\\"type\\\" and \\\"id\\\" to non-empty members.
43719
- * @export
43720
- * @interface JsonApiAutomationLinkage
43721
- */
43722
- export declare interface JsonApiAutomationLinkage {
43723
- /**
43724
- *
43725
- * @type {string}
43726
- * @memberof JsonApiAutomationLinkage
43727
- */
43728
- id: string;
43729
- /**
43730
- *
43731
- * @type {string}
43732
- * @memberof JsonApiAutomationLinkage
43733
- */
43734
- type: JsonApiAutomationLinkageTypeEnum;
43735
- }
43736
-
43737
- export declare const JsonApiAutomationLinkageTypeEnum: {
43738
- readonly AUTOMATION: "automation";
43739
- };
43740
-
43741
- export declare type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
43742
-
43743
- /**
43744
- * JSON:API representation of automation entity.
43745
- * @export
43746
- * @interface JsonApiAutomationOut
43747
- */
43748
- export declare interface JsonApiAutomationOut {
43749
- /**
43750
- * Object type
43751
- * @type {string}
43752
- * @memberof JsonApiAutomationOut
43753
- */
43754
- type: JsonApiAutomationOutTypeEnum;
43755
- /**
43756
- * API identifier of an object
43757
- * @type {string}
43758
- * @memberof JsonApiAutomationOut
43759
- */
43760
- id: string;
43761
- /**
43762
- *
43763
- * @type {JsonApiVisualizationObjectOutMeta}
43764
- * @memberof JsonApiAutomationOut
43765
- */
43766
- meta?: JsonApiVisualizationObjectOutMeta;
43767
- /**
43768
- *
43769
- * @type {JsonApiAutomationOutAttributes}
43770
- * @memberof JsonApiAutomationOut
43771
- */
43772
- attributes?: JsonApiAutomationOutAttributes;
43773
- /**
43774
- *
43775
- * @type {JsonApiAutomationOutRelationships}
43776
- * @memberof JsonApiAutomationOut
43777
- */
43778
- relationships?: JsonApiAutomationOutRelationships;
43789
+ relationships?: JsonApiAutomationInRelationships;
43779
43790
  }
43780
43791
 
43781
43792
  /**
43782
43793
  *
43783
43794
  * @export
43784
- * @interface JsonApiAutomationOutAttributes
43795
+ * @interface JsonApiAutomationInAttributes
43785
43796
  */
43786
- export declare interface JsonApiAutomationOutAttributes {
43797
+ export declare interface JsonApiAutomationInAttributes {
43787
43798
  /**
43788
43799
  *
43789
43800
  * @type {string}
43790
- * @memberof JsonApiAutomationOutAttributes
43801
+ * @memberof JsonApiAutomationInAttributes
43791
43802
  */
43792
43803
  title?: string;
43793
43804
  /**
43794
43805
  *
43795
43806
  * @type {string}
43796
- * @memberof JsonApiAutomationOutAttributes
43807
+ * @memberof JsonApiAutomationInAttributes
43797
43808
  */
43798
43809
  description?: string;
43799
43810
  /**
43800
43811
  *
43801
43812
  * @type {Array<string>}
43802
- * @memberof JsonApiAutomationOutAttributes
43813
+ * @memberof JsonApiAutomationInAttributes
43803
43814
  */
43804
43815
  tags?: Array<string>;
43805
43816
  /**
43806
43817
  *
43807
43818
  * @type {boolean}
43808
- * @memberof JsonApiAutomationOutAttributes
43819
+ * @memberof JsonApiAutomationInAttributes
43809
43820
  */
43810
43821
  areRelationsValid?: boolean;
43811
43822
  /**
43812
43823
  * Additional details to be included in the automated message.
43813
43824
  * @type {any}
43814
- * @memberof JsonApiAutomationOutAttributes
43825
+ * @memberof JsonApiAutomationInAttributes
43815
43826
  */
43816
43827
  details?: any;
43817
43828
  /**
43818
43829
  *
43819
- * @type {JsonApiAutomationOutAttributesMetadata}
43820
- * @memberof JsonApiAutomationOutAttributes
43830
+ * @type {JsonApiAutomationInAttributesMetadata}
43831
+ * @memberof JsonApiAutomationInAttributes
43821
43832
  */
43822
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
43833
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
43823
43834
  /**
43824
43835
  * Current state of the automation.
43825
43836
  * @type {string}
43826
- * @memberof JsonApiAutomationOutAttributes
43837
+ * @memberof JsonApiAutomationInAttributes
43827
43838
  */
43828
- state?: JsonApiAutomationOutAttributesStateEnum;
43839
+ state?: JsonApiAutomationInAttributesStateEnum;
43829
43840
  /**
43830
43841
  *
43831
- * @type {JsonApiAutomationOutAttributesSchedule}
43832
- * @memberof JsonApiAutomationOutAttributes
43842
+ * @type {JsonApiAutomationInAttributesSchedule}
43843
+ * @memberof JsonApiAutomationInAttributes
43833
43844
  */
43834
- schedule?: JsonApiAutomationOutAttributesSchedule;
43845
+ schedule?: JsonApiAutomationInAttributesSchedule;
43835
43846
  /**
43836
43847
  *
43837
- * @type {JsonApiAutomationOutAttributesAlert}
43838
- * @memberof JsonApiAutomationOutAttributes
43848
+ * @type {JsonApiAutomationInAttributesAlert}
43849
+ * @memberof JsonApiAutomationInAttributes
43839
43850
  */
43840
- alert?: JsonApiAutomationOutAttributesAlert;
43851
+ alert?: JsonApiAutomationInAttributesAlert;
43841
43852
  /**
43842
43853
  *
43843
- * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
43844
- * @memberof JsonApiAutomationOutAttributes
43854
+ * @type {Array<JsonApiAutomationInAttributesTabularExports>}
43855
+ * @memberof JsonApiAutomationInAttributes
43845
43856
  */
43846
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
43857
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
43847
43858
  /**
43848
43859
  *
43849
- * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
43850
- * @memberof JsonApiAutomationOutAttributes
43860
+ * @type {Array<JsonApiAutomationInAttributesVisualExports>}
43861
+ * @memberof JsonApiAutomationInAttributes
43851
43862
  */
43852
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
43863
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
43853
43864
  /**
43854
43865
  * External recipients of the automation action results.
43855
- * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
43856
- * @memberof JsonApiAutomationOutAttributes
43857
- */
43858
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
43859
- /**
43860
- *
43861
- * @type {string}
43862
- * @memberof JsonApiAutomationOutAttributes
43863
- */
43864
- createdAt?: string;
43865
- /**
43866
- *
43867
- * @type {string}
43868
- * @memberof JsonApiAutomationOutAttributes
43866
+ * @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
43867
+ * @memberof JsonApiAutomationInAttributes
43869
43868
  */
43870
- modifiedAt?: string;
43869
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
43871
43870
  }
43872
43871
 
43873
43872
  /**
43874
43873
  *
43875
43874
  * @export
43876
- * @interface JsonApiAutomationOutAttributesAlert
43875
+ * @interface JsonApiAutomationInAttributesAlert
43877
43876
  */
43878
- export declare interface JsonApiAutomationOutAttributesAlert {
43877
+ export declare interface JsonApiAutomationInAttributesAlert {
43879
43878
  /**
43880
43879
  *
43881
43880
  * @type {AlertAfm}
43882
- * @memberof JsonApiAutomationOutAttributesAlert
43881
+ * @memberof JsonApiAutomationInAttributesAlert
43883
43882
  */
43884
43883
  execution: AlertAfm;
43885
43884
  /**
43886
43885
  *
43887
43886
  * @type {AlertCondition}
43888
- * @memberof JsonApiAutomationOutAttributesAlert
43887
+ * @memberof JsonApiAutomationInAttributesAlert
43889
43888
  */
43890
43889
  condition: AlertCondition;
43891
43890
  /**
43892
43891
  * 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.
43893
43892
  * @type {string}
43894
- * @memberof JsonApiAutomationOutAttributesAlert
43893
+ * @memberof JsonApiAutomationInAttributesAlert
43895
43894
  */
43896
- trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
43895
+ trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
43897
43896
  }
43898
43897
 
43899
- export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
43898
+ export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
43900
43899
  readonly ALWAYS: "ALWAYS";
43901
43900
  readonly ONCE: "ONCE";
43902
43901
  };
43903
43902
 
43904
- export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
43903
+ export declare type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
43905
43904
 
43906
43905
  /**
43907
43906
  *
43908
43907
  * @export
43909
- * @interface JsonApiAutomationOutAttributesExternalRecipients
43908
+ * @interface JsonApiAutomationInAttributesExternalRecipients
43910
43909
  */
43911
- export declare interface JsonApiAutomationOutAttributesExternalRecipients {
43910
+ export declare interface JsonApiAutomationInAttributesExternalRecipients {
43912
43911
  /**
43913
43912
  * E-mail address to send notifications from.
43914
43913
  * @type {string}
43915
- * @memberof JsonApiAutomationOutAttributesExternalRecipients
43914
+ * @memberof JsonApiAutomationInAttributesExternalRecipients
43916
43915
  */
43917
43916
  email: string;
43918
43917
  }
@@ -43920,19 +43919,19 @@ export declare interface JsonApiAutomationOutAttributesExternalRecipients {
43920
43919
  /**
43921
43920
  * Additional information for the automation.
43922
43921
  * @export
43923
- * @interface JsonApiAutomationOutAttributesMetadata
43922
+ * @interface JsonApiAutomationInAttributesMetadata
43924
43923
  */
43925
- export declare interface JsonApiAutomationOutAttributesMetadata {
43924
+ export declare interface JsonApiAutomationInAttributesMetadata {
43926
43925
  /**
43927
43926
  *
43928
43927
  * @type {string}
43929
- * @memberof JsonApiAutomationOutAttributesMetadata
43928
+ * @memberof JsonApiAutomationInAttributesMetadata
43930
43929
  */
43931
43930
  widget?: string;
43932
43931
  /**
43933
43932
  *
43934
43933
  * @type {Array<VisibleFilter>}
43935
- * @memberof JsonApiAutomationOutAttributesMetadata
43934
+ * @memberof JsonApiAutomationInAttributesMetadata
43936
43935
  */
43937
43936
  visibleFilters?: Array<VisibleFilter>;
43938
43937
  }
@@ -43940,52 +43939,52 @@ export declare interface JsonApiAutomationOutAttributesMetadata {
43940
43939
  /**
43941
43940
  *
43942
43941
  * @export
43943
- * @interface JsonApiAutomationOutAttributesSchedule
43942
+ * @interface JsonApiAutomationInAttributesSchedule
43944
43943
  */
43945
- export declare interface JsonApiAutomationOutAttributesSchedule {
43944
+ export declare interface JsonApiAutomationInAttributesSchedule {
43946
43945
  /**
43947
43946
  * 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.
43948
43947
  * @type {string}
43949
- * @memberof JsonApiAutomationOutAttributesSchedule
43948
+ * @memberof JsonApiAutomationInAttributesSchedule
43950
43949
  */
43951
43950
  cron: string;
43952
43951
  /**
43953
43952
  * Human-readable description of the cron expression.
43954
43953
  * @type {string}
43955
- * @memberof JsonApiAutomationOutAttributesSchedule
43954
+ * @memberof JsonApiAutomationInAttributesSchedule
43956
43955
  */
43957
43956
  cronDescription?: string;
43958
43957
  /**
43959
43958
  * Timezone in which the schedule is defined.
43960
43959
  * @type {string}
43961
- * @memberof JsonApiAutomationOutAttributesSchedule
43960
+ * @memberof JsonApiAutomationInAttributesSchedule
43962
43961
  */
43963
43962
  timezone: string;
43964
43963
  /**
43965
43964
  * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
43966
43965
  * @type {string}
43967
- * @memberof JsonApiAutomationOutAttributesSchedule
43966
+ * @memberof JsonApiAutomationInAttributesSchedule
43968
43967
  */
43969
43968
  firstRun?: string;
43970
43969
  }
43971
43970
 
43972
- export declare const JsonApiAutomationOutAttributesStateEnum: {
43971
+ export declare const JsonApiAutomationInAttributesStateEnum: {
43973
43972
  readonly ACTIVE: "ACTIVE";
43974
43973
  readonly PAUSED: "PAUSED";
43975
43974
  };
43976
43975
 
43977
- export declare type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
43976
+ export declare type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
43978
43977
 
43979
43978
  /**
43980
43979
  *
43981
43980
  * @export
43982
- * @interface JsonApiAutomationOutAttributesTabularExports
43981
+ * @interface JsonApiAutomationInAttributesTabularExports
43983
43982
  */
43984
- export declare interface JsonApiAutomationOutAttributesTabularExports {
43983
+ export declare interface JsonApiAutomationInAttributesTabularExports {
43985
43984
  /**
43986
43985
  *
43987
43986
  * @type {TabularExportRequest}
43988
- * @memberof JsonApiAutomationOutAttributesTabularExports
43987
+ * @memberof JsonApiAutomationInAttributesTabularExports
43989
43988
  */
43990
43989
  requestPayload: TabularExportRequest;
43991
43990
  }
@@ -43993,13 +43992,13 @@ export declare interface JsonApiAutomationOutAttributesTabularExports {
43993
43992
  /**
43994
43993
  *
43995
43994
  * @export
43996
- * @interface JsonApiAutomationOutAttributesVisualExports
43995
+ * @interface JsonApiAutomationInAttributesVisualExports
43997
43996
  */
43998
- export declare interface JsonApiAutomationOutAttributesVisualExports {
43997
+ export declare interface JsonApiAutomationInAttributesVisualExports {
43999
43998
  /**
44000
43999
  *
44001
44000
  * @type {VisualExportRequest}
44002
- * @memberof JsonApiAutomationOutAttributesVisualExports
44001
+ * @memberof JsonApiAutomationInAttributesVisualExports
44003
44002
  */
44004
44003
  requestPayload: VisualExportRequest;
44005
44004
  }
@@ -44007,121 +44006,73 @@ export declare interface JsonApiAutomationOutAttributesVisualExports {
44007
44006
  /**
44008
44007
  *
44009
44008
  * @export
44010
- * @interface JsonApiAutomationOutDocument
44009
+ * @interface JsonApiAutomationInDocument
44011
44010
  */
44012
- export declare interface JsonApiAutomationOutDocument {
44013
- /**
44014
- *
44015
- * @type {JsonApiAutomationOut}
44016
- * @memberof JsonApiAutomationOutDocument
44017
- */
44018
- data: JsonApiAutomationOut;
44011
+ export declare interface JsonApiAutomationInDocument {
44019
44012
  /**
44020
44013
  *
44021
- * @type {ObjectLinks}
44022
- * @memberof JsonApiAutomationOutDocument
44023
- */
44024
- links?: ObjectLinks;
44025
- /**
44026
- * Included resources
44027
- * @type {Array<JsonApiAutomationOutIncludes>}
44028
- * @memberof JsonApiAutomationOutDocument
44014
+ * @type {JsonApiAutomationIn}
44015
+ * @memberof JsonApiAutomationInDocument
44029
44016
  */
44030
- included?: Array<JsonApiAutomationOutIncludes>;
44017
+ data: JsonApiAutomationIn;
44031
44018
  }
44032
44019
 
44033
44020
  /**
44034
- * @type JsonApiAutomationOutIncludes
44035
- * @export
44036
- */
44037
- export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
44038
-
44039
- /**
44040
- * A JSON:API document with a list of resources
44021
+ *
44041
44022
  * @export
44042
- * @interface JsonApiAutomationOutList
44023
+ * @interface JsonApiAutomationInRelationships
44043
44024
  */
44044
- export declare interface JsonApiAutomationOutList {
44025
+ export declare interface JsonApiAutomationInRelationships {
44045
44026
  /**
44046
44027
  *
44047
- * @type {Array<JsonApiAutomationOutWithLinks>}
44048
- * @memberof JsonApiAutomationOutList
44028
+ * @type {JsonApiAutomationInRelationshipsNotificationChannel}
44029
+ * @memberof JsonApiAutomationInRelationships
44049
44030
  */
44050
- data: Array<JsonApiAutomationOutWithLinks>;
44031
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
44051
44032
  /**
44052
44033
  *
44053
- * @type {ListLinks}
44054
- * @memberof JsonApiAutomationOutList
44034
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
44035
+ * @memberof JsonApiAutomationInRelationships
44055
44036
  */
44056
- links?: ListLinks;
44037
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
44057
44038
  /**
44058
44039
  *
44059
- * @type {JsonApiColorPaletteOutListMeta}
44060
- * @memberof JsonApiAutomationOutList
44040
+ * @type {JsonApiAutomationInRelationshipsExportDefinitions}
44041
+ * @memberof JsonApiAutomationInRelationships
44061
44042
  */
44062
- meta?: JsonApiColorPaletteOutListMeta;
44043
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
44063
44044
  /**
44064
- * Included resources
44065
- * @type {Array<JsonApiAutomationOutIncludes>}
44066
- * @memberof JsonApiAutomationOutList
44045
+ *
44046
+ * @type {JsonApiAutomationInRelationshipsRecipients}
44047
+ * @memberof JsonApiAutomationInRelationships
44067
44048
  */
44068
- included?: Array<JsonApiAutomationOutIncludes>;
44049
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
44069
44050
  }
44070
44051
 
44071
44052
  /**
44072
44053
  *
44073
44054
  * @export
44074
- * @interface JsonApiAutomationOutRelationships
44055
+ * @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
44075
44056
  */
44076
- export declare interface JsonApiAutomationOutRelationships {
44077
- /**
44078
- *
44079
- * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
44080
- * @memberof JsonApiAutomationOutRelationships
44081
- */
44082
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
44083
- /**
44084
- *
44085
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
44086
- * @memberof JsonApiAutomationOutRelationships
44087
- */
44088
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
44057
+ export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
44089
44058
  /**
44090
44059
  *
44091
- * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
44092
- * @memberof JsonApiAutomationOutRelationships
44093
- */
44094
- createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44095
- /**
44096
- *
44097
- * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
44098
- * @memberof JsonApiAutomationOutRelationships
44099
- */
44100
- modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44101
- /**
44102
- *
44103
- * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
44104
- * @memberof JsonApiAutomationOutRelationships
44105
- */
44106
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
44107
- /**
44108
- *
44109
- * @type {JsonApiAutomationOutRelationshipsRecipients}
44110
- * @memberof JsonApiAutomationOutRelationships
44060
+ * @type {JsonApiAnalyticalDashboardToOneLinkage}
44061
+ * @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
44111
44062
  */
44112
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
44063
+ data: JsonApiAnalyticalDashboardToOneLinkage | null;
44113
44064
  }
44114
44065
 
44115
44066
  /**
44116
44067
  *
44117
44068
  * @export
44118
- * @interface JsonApiAutomationOutRelationshipsExportDefinitions
44069
+ * @interface JsonApiAutomationInRelationshipsExportDefinitions
44119
44070
  */
44120
- export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
44071
+ export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
44121
44072
  /**
44122
44073
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
44123
44074
  * @type {Array<JsonApiExportDefinitionLinkage>}
44124
- * @memberof JsonApiAutomationOutRelationshipsExportDefinitions
44075
+ * @memberof JsonApiAutomationInRelationshipsExportDefinitions
44125
44076
  */
44126
44077
  data: Array<JsonApiExportDefinitionLinkage>;
44127
44078
  }
@@ -44129,13 +44080,13 @@ export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
44129
44080
  /**
44130
44081
  *
44131
44082
  * @export
44132
- * @interface JsonApiAutomationOutRelationshipsNotificationChannel
44083
+ * @interface JsonApiAutomationInRelationshipsNotificationChannel
44133
44084
  */
44134
- export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
44085
+ export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
44135
44086
  /**
44136
44087
  *
44137
44088
  * @type {JsonApiNotificationChannelToOneLinkage}
44138
- * @memberof JsonApiAutomationOutRelationshipsNotificationChannel
44089
+ * @memberof JsonApiAutomationInRelationshipsNotificationChannel
44139
44090
  */
44140
44091
  data: JsonApiNotificationChannelToOneLinkage | null;
44141
44092
  }
@@ -44143,236 +44094,394 @@ export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
44143
44094
  /**
44144
44095
  *
44145
44096
  * @export
44146
- * @interface JsonApiAutomationOutRelationshipsRecipients
44097
+ * @interface JsonApiAutomationInRelationshipsRecipients
44147
44098
  */
44148
- export declare interface JsonApiAutomationOutRelationshipsRecipients {
44099
+ export declare interface JsonApiAutomationInRelationshipsRecipients {
44149
44100
  /**
44150
44101
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
44151
44102
  * @type {Array<JsonApiUserLinkage>}
44152
- * @memberof JsonApiAutomationOutRelationshipsRecipients
44103
+ * @memberof JsonApiAutomationInRelationshipsRecipients
44153
44104
  */
44154
44105
  data: Array<JsonApiUserLinkage>;
44155
44106
  }
44156
44107
 
44157
- export declare const JsonApiAutomationOutTypeEnum: {
44108
+ export declare const JsonApiAutomationInTypeEnum: {
44158
44109
  readonly AUTOMATION: "automation";
44159
44110
  };
44160
44111
 
44161
- export declare type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
44112
+ export declare type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[keyof typeof JsonApiAutomationInTypeEnum];
44162
44113
 
44163
44114
  /**
44164
- *
44115
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
44165
44116
  * @export
44166
- * @interface JsonApiAutomationOutWithLinks
44117
+ * @interface JsonApiAutomationLinkage
44167
44118
  */
44168
- export declare interface JsonApiAutomationOutWithLinks {
44169
- /**
44170
- * Object type
44171
- * @type {string}
44172
- * @memberof JsonApiAutomationOutWithLinks
44173
- */
44174
- type: JsonApiAutomationOutWithLinksTypeEnum;
44119
+ export declare interface JsonApiAutomationLinkage {
44175
44120
  /**
44176
- * API identifier of an object
44121
+ *
44177
44122
  * @type {string}
44178
- * @memberof JsonApiAutomationOutWithLinks
44123
+ * @memberof JsonApiAutomationLinkage
44179
44124
  */
44180
44125
  id: string;
44181
44126
  /**
44182
44127
  *
44183
- * @type {JsonApiVisualizationObjectOutMeta}
44184
- * @memberof JsonApiAutomationOutWithLinks
44185
- */
44186
- meta?: JsonApiVisualizationObjectOutMeta;
44187
- /**
44188
- *
44189
- * @type {JsonApiAutomationOutAttributes}
44190
- * @memberof JsonApiAutomationOutWithLinks
44191
- */
44192
- attributes?: JsonApiAutomationOutAttributes;
44193
- /**
44194
- *
44195
- * @type {JsonApiAutomationOutRelationships}
44196
- * @memberof JsonApiAutomationOutWithLinks
44197
- */
44198
- relationships?: JsonApiAutomationOutRelationships;
44199
- /**
44200
- *
44201
- * @type {ObjectLinks}
44202
- * @memberof JsonApiAutomationOutWithLinks
44128
+ * @type {string}
44129
+ * @memberof JsonApiAutomationLinkage
44203
44130
  */
44204
- links?: ObjectLinks;
44131
+ type: JsonApiAutomationLinkageTypeEnum;
44205
44132
  }
44206
44133
 
44207
- export declare const JsonApiAutomationOutWithLinksTypeEnum: {
44134
+ export declare const JsonApiAutomationLinkageTypeEnum: {
44208
44135
  readonly AUTOMATION: "automation";
44209
44136
  };
44210
44137
 
44211
- export declare type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
44138
+ export declare type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
44212
44139
 
44213
44140
  /**
44214
- * JSON:API representation of patching automation entity.
44141
+ * JSON:API representation of automation entity.
44215
44142
  * @export
44216
- * @interface JsonApiAutomationPatch
44143
+ * @interface JsonApiAutomationOut
44217
44144
  */
44218
- export declare interface JsonApiAutomationPatch {
44145
+ export declare interface JsonApiAutomationOut {
44219
44146
  /**
44220
44147
  * Object type
44221
44148
  * @type {string}
44222
- * @memberof JsonApiAutomationPatch
44149
+ * @memberof JsonApiAutomationOut
44223
44150
  */
44224
- type: JsonApiAutomationPatchTypeEnum;
44151
+ type: JsonApiAutomationOutTypeEnum;
44225
44152
  /**
44226
44153
  * API identifier of an object
44227
44154
  * @type {string}
44228
- * @memberof JsonApiAutomationPatch
44155
+ * @memberof JsonApiAutomationOut
44229
44156
  */
44230
44157
  id: string;
44231
44158
  /**
44232
44159
  *
44233
- * @type {JsonApiAutomationPatchAttributes}
44234
- * @memberof JsonApiAutomationPatch
44160
+ * @type {JsonApiVisualizationObjectOutMeta}
44161
+ * @memberof JsonApiAutomationOut
44235
44162
  */
44236
- attributes?: JsonApiAutomationPatchAttributes;
44163
+ meta?: JsonApiVisualizationObjectOutMeta;
44237
44164
  /**
44238
44165
  *
44239
- * @type {JsonApiAutomationPatchRelationships}
44240
- * @memberof JsonApiAutomationPatch
44166
+ * @type {JsonApiAutomationOutAttributes}
44167
+ * @memberof JsonApiAutomationOut
44168
+ */
44169
+ attributes?: JsonApiAutomationOutAttributes;
44170
+ /**
44171
+ *
44172
+ * @type {JsonApiAutomationOutRelationships}
44173
+ * @memberof JsonApiAutomationOut
44241
44174
  */
44242
- relationships?: JsonApiAutomationPatchRelationships;
44175
+ relationships?: JsonApiAutomationOutRelationships;
44243
44176
  }
44244
44177
 
44245
44178
  /**
44246
44179
  *
44247
44180
  * @export
44248
- * @interface JsonApiAutomationPatchAttributes
44181
+ * @interface JsonApiAutomationOutAttributes
44249
44182
  */
44250
- export declare interface JsonApiAutomationPatchAttributes {
44183
+ export declare interface JsonApiAutomationOutAttributes {
44251
44184
  /**
44252
44185
  *
44253
44186
  * @type {string}
44254
- * @memberof JsonApiAutomationPatchAttributes
44187
+ * @memberof JsonApiAutomationOutAttributes
44255
44188
  */
44256
44189
  title?: string;
44257
44190
  /**
44258
44191
  *
44259
44192
  * @type {string}
44260
- * @memberof JsonApiAutomationPatchAttributes
44193
+ * @memberof JsonApiAutomationOutAttributes
44261
44194
  */
44262
44195
  description?: string;
44263
44196
  /**
44264
44197
  *
44265
44198
  * @type {Array<string>}
44266
- * @memberof JsonApiAutomationPatchAttributes
44199
+ * @memberof JsonApiAutomationOutAttributes
44267
44200
  */
44268
44201
  tags?: Array<string>;
44269
44202
  /**
44270
44203
  *
44271
44204
  * @type {boolean}
44272
- * @memberof JsonApiAutomationPatchAttributes
44205
+ * @memberof JsonApiAutomationOutAttributes
44273
44206
  */
44274
44207
  areRelationsValid?: boolean;
44275
44208
  /**
44276
44209
  * Additional details to be included in the automated message.
44277
44210
  * @type {any}
44278
- * @memberof JsonApiAutomationPatchAttributes
44211
+ * @memberof JsonApiAutomationOutAttributes
44279
44212
  */
44280
44213
  details?: any;
44281
44214
  /**
44282
44215
  *
44283
- * @type {JsonApiAutomationOutAttributesMetadata}
44284
- * @memberof JsonApiAutomationPatchAttributes
44216
+ * @type {JsonApiAutomationInAttributesMetadata}
44217
+ * @memberof JsonApiAutomationOutAttributes
44285
44218
  */
44286
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
44219
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
44287
44220
  /**
44288
44221
  * Current state of the automation.
44289
44222
  * @type {string}
44290
- * @memberof JsonApiAutomationPatchAttributes
44223
+ * @memberof JsonApiAutomationOutAttributes
44291
44224
  */
44292
- state?: JsonApiAutomationPatchAttributesStateEnum;
44225
+ state?: JsonApiAutomationOutAttributesStateEnum;
44293
44226
  /**
44294
44227
  *
44295
- * @type {JsonApiAutomationOutAttributesSchedule}
44296
- * @memberof JsonApiAutomationPatchAttributes
44228
+ * @type {JsonApiAutomationInAttributesSchedule}
44229
+ * @memberof JsonApiAutomationOutAttributes
44297
44230
  */
44298
- schedule?: JsonApiAutomationOutAttributesSchedule;
44231
+ schedule?: JsonApiAutomationInAttributesSchedule;
44299
44232
  /**
44300
44233
  *
44301
- * @type {JsonApiAutomationOutAttributesAlert}
44302
- * @memberof JsonApiAutomationPatchAttributes
44234
+ * @type {JsonApiAutomationInAttributesAlert}
44235
+ * @memberof JsonApiAutomationOutAttributes
44303
44236
  */
44304
- alert?: JsonApiAutomationOutAttributesAlert;
44237
+ alert?: JsonApiAutomationInAttributesAlert;
44305
44238
  /**
44306
44239
  *
44307
- * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
44308
- * @memberof JsonApiAutomationPatchAttributes
44240
+ * @type {Array<JsonApiAutomationInAttributesTabularExports>}
44241
+ * @memberof JsonApiAutomationOutAttributes
44309
44242
  */
44310
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
44243
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
44311
44244
  /**
44312
44245
  *
44313
- * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
44314
- * @memberof JsonApiAutomationPatchAttributes
44246
+ * @type {Array<JsonApiAutomationInAttributesVisualExports>}
44247
+ * @memberof JsonApiAutomationOutAttributes
44315
44248
  */
44316
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
44249
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
44317
44250
  /**
44318
44251
  * External recipients of the automation action results.
44319
- * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
44320
- * @memberof JsonApiAutomationPatchAttributes
44252
+ * @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
44253
+ * @memberof JsonApiAutomationOutAttributes
44254
+ */
44255
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
44256
+ /**
44257
+ *
44258
+ * @type {string}
44259
+ * @memberof JsonApiAutomationOutAttributes
44321
44260
  */
44322
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
44261
+ createdAt?: string;
44262
+ /**
44263
+ *
44264
+ * @type {string}
44265
+ * @memberof JsonApiAutomationOutAttributes
44266
+ */
44267
+ modifiedAt?: string;
44323
44268
  }
44324
44269
 
44325
- export declare const JsonApiAutomationPatchAttributesStateEnum: {
44270
+ export declare const JsonApiAutomationOutAttributesStateEnum: {
44326
44271
  readonly ACTIVE: "ACTIVE";
44327
44272
  readonly PAUSED: "PAUSED";
44328
44273
  };
44329
44274
 
44330
- export declare type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
44275
+ export declare type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
44331
44276
 
44332
44277
  /**
44333
44278
  *
44334
44279
  * @export
44335
- * @interface JsonApiAutomationPatchDocument
44280
+ * @interface JsonApiAutomationOutDocument
44336
44281
  */
44337
- export declare interface JsonApiAutomationPatchDocument {
44282
+ export declare interface JsonApiAutomationOutDocument {
44338
44283
  /**
44339
44284
  *
44340
- * @type {JsonApiAutomationPatch}
44341
- * @memberof JsonApiAutomationPatchDocument
44285
+ * @type {JsonApiAutomationOut}
44286
+ * @memberof JsonApiAutomationOutDocument
44342
44287
  */
44343
- data: JsonApiAutomationPatch;
44288
+ data: JsonApiAutomationOut;
44289
+ /**
44290
+ *
44291
+ * @type {ObjectLinks}
44292
+ * @memberof JsonApiAutomationOutDocument
44293
+ */
44294
+ links?: ObjectLinks;
44295
+ /**
44296
+ * Included resources
44297
+ * @type {Array<JsonApiAutomationOutIncludes>}
44298
+ * @memberof JsonApiAutomationOutDocument
44299
+ */
44300
+ included?: Array<JsonApiAutomationOutIncludes>;
44344
44301
  }
44345
44302
 
44303
+ /**
44304
+ * @type JsonApiAutomationOutIncludes
44305
+ * @export
44306
+ */
44307
+ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
44308
+
44309
+ /**
44310
+ * A JSON:API document with a list of resources
44311
+ * @export
44312
+ * @interface JsonApiAutomationOutList
44313
+ */
44314
+ export declare interface JsonApiAutomationOutList {
44315
+ /**
44316
+ *
44317
+ * @type {Array<JsonApiAutomationOutWithLinks>}
44318
+ * @memberof JsonApiAutomationOutList
44319
+ */
44320
+ data: Array<JsonApiAutomationOutWithLinks>;
44321
+ /**
44322
+ *
44323
+ * @type {ListLinks}
44324
+ * @memberof JsonApiAutomationOutList
44325
+ */
44326
+ links?: ListLinks;
44327
+ /**
44328
+ *
44329
+ * @type {JsonApiColorPaletteOutListMeta}
44330
+ * @memberof JsonApiAutomationOutList
44331
+ */
44332
+ meta?: JsonApiColorPaletteOutListMeta;
44333
+ /**
44334
+ * Included resources
44335
+ * @type {Array<JsonApiAutomationOutIncludes>}
44336
+ * @memberof JsonApiAutomationOutList
44337
+ */
44338
+ included?: Array<JsonApiAutomationOutIncludes>;
44339
+ }
44340
+
44341
+ /**
44342
+ *
44343
+ * @export
44344
+ * @interface JsonApiAutomationOutRelationships
44345
+ */
44346
+ export declare interface JsonApiAutomationOutRelationships {
44347
+ /**
44348
+ *
44349
+ * @type {JsonApiAutomationInRelationshipsNotificationChannel}
44350
+ * @memberof JsonApiAutomationOutRelationships
44351
+ */
44352
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
44353
+ /**
44354
+ *
44355
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
44356
+ * @memberof JsonApiAutomationOutRelationships
44357
+ */
44358
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
44359
+ /**
44360
+ *
44361
+ * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
44362
+ * @memberof JsonApiAutomationOutRelationships
44363
+ */
44364
+ createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44365
+ /**
44366
+ *
44367
+ * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
44368
+ * @memberof JsonApiAutomationOutRelationships
44369
+ */
44370
+ modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
44371
+ /**
44372
+ *
44373
+ * @type {JsonApiAutomationInRelationshipsExportDefinitions}
44374
+ * @memberof JsonApiAutomationOutRelationships
44375
+ */
44376
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
44377
+ /**
44378
+ *
44379
+ * @type {JsonApiAutomationInRelationshipsRecipients}
44380
+ * @memberof JsonApiAutomationOutRelationships
44381
+ */
44382
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
44383
+ }
44384
+
44385
+ export declare const JsonApiAutomationOutTypeEnum: {
44386
+ readonly AUTOMATION: "automation";
44387
+ };
44388
+
44389
+ export declare type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
44390
+
44346
44391
  /**
44347
44392
  *
44348
44393
  * @export
44349
- * @interface JsonApiAutomationPatchRelationships
44394
+ * @interface JsonApiAutomationOutWithLinks
44350
44395
  */
44351
- export declare interface JsonApiAutomationPatchRelationships {
44396
+ export declare interface JsonApiAutomationOutWithLinks {
44397
+ /**
44398
+ * Object type
44399
+ * @type {string}
44400
+ * @memberof JsonApiAutomationOutWithLinks
44401
+ */
44402
+ type: JsonApiAutomationOutWithLinksTypeEnum;
44403
+ /**
44404
+ * API identifier of an object
44405
+ * @type {string}
44406
+ * @memberof JsonApiAutomationOutWithLinks
44407
+ */
44408
+ id: string;
44352
44409
  /**
44353
44410
  *
44354
- * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
44355
- * @memberof JsonApiAutomationPatchRelationships
44411
+ * @type {JsonApiVisualizationObjectOutMeta}
44412
+ * @memberof JsonApiAutomationOutWithLinks
44356
44413
  */
44357
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
44414
+ meta?: JsonApiVisualizationObjectOutMeta;
44358
44415
  /**
44359
44416
  *
44360
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
44361
- * @memberof JsonApiAutomationPatchRelationships
44417
+ * @type {JsonApiAutomationOutAttributes}
44418
+ * @memberof JsonApiAutomationOutWithLinks
44362
44419
  */
44363
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
44420
+ attributes?: JsonApiAutomationOutAttributes;
44364
44421
  /**
44365
44422
  *
44366
- * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
44367
- * @memberof JsonApiAutomationPatchRelationships
44423
+ * @type {JsonApiAutomationOutRelationships}
44424
+ * @memberof JsonApiAutomationOutWithLinks
44368
44425
  */
44369
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
44426
+ relationships?: JsonApiAutomationOutRelationships;
44370
44427
  /**
44371
44428
  *
44372
- * @type {JsonApiAutomationOutRelationshipsRecipients}
44373
- * @memberof JsonApiAutomationPatchRelationships
44429
+ * @type {ObjectLinks}
44430
+ * @memberof JsonApiAutomationOutWithLinks
44374
44431
  */
44375
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
44432
+ links?: ObjectLinks;
44433
+ }
44434
+
44435
+ export declare const JsonApiAutomationOutWithLinksTypeEnum: {
44436
+ readonly AUTOMATION: "automation";
44437
+ };
44438
+
44439
+ export declare type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
44440
+
44441
+ /**
44442
+ * JSON:API representation of patching automation entity.
44443
+ * @export
44444
+ * @interface JsonApiAutomationPatch
44445
+ */
44446
+ export declare interface JsonApiAutomationPatch {
44447
+ /**
44448
+ * Object type
44449
+ * @type {string}
44450
+ * @memberof JsonApiAutomationPatch
44451
+ */
44452
+ type: JsonApiAutomationPatchTypeEnum;
44453
+ /**
44454
+ * API identifier of an object
44455
+ * @type {string}
44456
+ * @memberof JsonApiAutomationPatch
44457
+ */
44458
+ id: string;
44459
+ /**
44460
+ *
44461
+ * @type {JsonApiAutomationInAttributes}
44462
+ * @memberof JsonApiAutomationPatch
44463
+ */
44464
+ attributes?: JsonApiAutomationInAttributes;
44465
+ /**
44466
+ *
44467
+ * @type {JsonApiAutomationInRelationships}
44468
+ * @memberof JsonApiAutomationPatch
44469
+ */
44470
+ relationships?: JsonApiAutomationInRelationships;
44471
+ }
44472
+
44473
+ /**
44474
+ *
44475
+ * @export
44476
+ * @interface JsonApiAutomationPatchDocument
44477
+ */
44478
+ export declare interface JsonApiAutomationPatchDocument {
44479
+ /**
44480
+ *
44481
+ * @type {JsonApiAutomationPatch}
44482
+ * @memberof JsonApiAutomationPatchDocument
44483
+ */
44484
+ data: JsonApiAutomationPatch;
44376
44485
  }
44377
44486
 
44378
44487
  export declare const JsonApiAutomationPatchTypeEnum: {
@@ -44670,10 +44779,10 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
44670
44779
  id: string;
44671
44780
  /**
44672
44781
  *
44673
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44782
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44674
44783
  * @memberof JsonApiCookieSecurityConfigurationIn
44675
44784
  */
44676
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44785
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44677
44786
  }
44678
44787
 
44679
44788
  /**
@@ -44716,30 +44825,10 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
44716
44825
  id: string;
44717
44826
  /**
44718
44827
  *
44719
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44828
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44720
44829
  * @memberof JsonApiCookieSecurityConfigurationOut
44721
44830
  */
44722
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44723
- }
44724
-
44725
- /**
44726
- *
44727
- * @export
44728
- * @interface JsonApiCookieSecurityConfigurationOutAttributes
44729
- */
44730
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
44731
- /**
44732
- *
44733
- * @type {string}
44734
- * @memberof JsonApiCookieSecurityConfigurationOutAttributes
44735
- */
44736
- lastRotation?: string;
44737
- /**
44738
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44739
- * @type {string}
44740
- * @memberof JsonApiCookieSecurityConfigurationOutAttributes
44741
- */
44742
- rotationInterval?: string;
44831
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44743
44832
  }
44744
44833
 
44745
44834
  /**
@@ -44788,10 +44877,30 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
44788
44877
  id: string;
44789
44878
  /**
44790
44879
  *
44791
- * @type {JsonApiCookieSecurityConfigurationOutAttributes}
44880
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44792
44881
  * @memberof JsonApiCookieSecurityConfigurationPatch
44793
44882
  */
44794
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
44883
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44884
+ }
44885
+
44886
+ /**
44887
+ *
44888
+ * @export
44889
+ * @interface JsonApiCookieSecurityConfigurationPatchAttributes
44890
+ */
44891
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
44892
+ /**
44893
+ *
44894
+ * @type {string}
44895
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
44896
+ */
44897
+ lastRotation?: string;
44898
+ /**
44899
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44900
+ * @type {string}
44901
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
44902
+ */
44903
+ rotationInterval?: string;
44795
44904
  }
44796
44905
 
44797
44906
  /**
@@ -45070,10 +45179,30 @@ export declare interface JsonApiCustomApplicationSettingIn {
45070
45179
  id: string;
45071
45180
  /**
45072
45181
  *
45073
- * @type {JsonApiCustomApplicationSettingOutAttributes}
45182
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45074
45183
  * @memberof JsonApiCustomApplicationSettingIn
45075
45184
  */
45076
- attributes: JsonApiCustomApplicationSettingOutAttributes;
45185
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45186
+ }
45187
+
45188
+ /**
45189
+ *
45190
+ * @export
45191
+ * @interface JsonApiCustomApplicationSettingInAttributes
45192
+ */
45193
+ export declare interface JsonApiCustomApplicationSettingInAttributes {
45194
+ /**
45195
+ *
45196
+ * @type {string}
45197
+ * @memberof JsonApiCustomApplicationSettingInAttributes
45198
+ */
45199
+ applicationName: string;
45200
+ /**
45201
+ * Free-form JSON content. Maximum supported length is 15000 characters.
45202
+ * @type {object}
45203
+ * @memberof JsonApiCustomApplicationSettingInAttributes
45204
+ */
45205
+ content: object;
45077
45206
  }
45078
45207
 
45079
45208
  /**
@@ -45122,30 +45251,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
45122
45251
  meta?: JsonApiVisualizationObjectOutMeta;
45123
45252
  /**
45124
45253
  *
45125
- * @type {JsonApiCustomApplicationSettingOutAttributes}
45254
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45126
45255
  * @memberof JsonApiCustomApplicationSettingOut
45127
45256
  */
45128
- attributes: JsonApiCustomApplicationSettingOutAttributes;
45129
- }
45130
-
45131
- /**
45132
- *
45133
- * @export
45134
- * @interface JsonApiCustomApplicationSettingOutAttributes
45135
- */
45136
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
45137
- /**
45138
- *
45139
- * @type {string}
45140
- * @memberof JsonApiCustomApplicationSettingOutAttributes
45141
- */
45142
- applicationName: string;
45143
- /**
45144
- * Free-form JSON content. Maximum supported length is 15000 characters.
45145
- * @type {object}
45146
- * @memberof JsonApiCustomApplicationSettingOutAttributes
45147
- */
45148
- content: object;
45257
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45149
45258
  }
45150
45259
 
45151
45260
  /**
@@ -45226,10 +45335,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
45226
45335
  meta?: JsonApiVisualizationObjectOutMeta;
45227
45336
  /**
45228
45337
  *
45229
- * @type {JsonApiCustomApplicationSettingOutAttributes}
45338
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45230
45339
  * @memberof JsonApiCustomApplicationSettingOutWithLinks
45231
45340
  */
45232
- attributes: JsonApiCustomApplicationSettingOutAttributes;
45341
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45233
45342
  /**
45234
45343
  *
45235
45344
  * @type {ObjectLinks}
@@ -45330,10 +45439,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
45330
45439
  id?: string;
45331
45440
  /**
45332
45441
  *
45333
- * @type {JsonApiCustomApplicationSettingOutAttributes}
45442
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45334
45443
  * @memberof JsonApiCustomApplicationSettingPostOptionalId
45335
45444
  */
45336
- attributes: JsonApiCustomApplicationSettingOutAttributes;
45445
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45337
45446
  }
45338
45447
 
45339
45448
  /**
@@ -45376,10 +45485,48 @@ export declare interface JsonApiDashboardPluginIn {
45376
45485
  id: string;
45377
45486
  /**
45378
45487
  *
45379
- * @type {JsonApiDashboardPluginPatchAttributes}
45488
+ * @type {JsonApiDashboardPluginInAttributes}
45380
45489
  * @memberof JsonApiDashboardPluginIn
45381
45490
  */
45382
- attributes?: JsonApiDashboardPluginPatchAttributes;
45491
+ attributes?: JsonApiDashboardPluginInAttributes;
45492
+ }
45493
+
45494
+ /**
45495
+ *
45496
+ * @export
45497
+ * @interface JsonApiDashboardPluginInAttributes
45498
+ */
45499
+ export declare interface JsonApiDashboardPluginInAttributes {
45500
+ /**
45501
+ *
45502
+ * @type {string}
45503
+ * @memberof JsonApiDashboardPluginInAttributes
45504
+ */
45505
+ title?: string;
45506
+ /**
45507
+ *
45508
+ * @type {string}
45509
+ * @memberof JsonApiDashboardPluginInAttributes
45510
+ */
45511
+ description?: string;
45512
+ /**
45513
+ *
45514
+ * @type {Array<string>}
45515
+ * @memberof JsonApiDashboardPluginInAttributes
45516
+ */
45517
+ tags?: Array<string>;
45518
+ /**
45519
+ *
45520
+ * @type {boolean}
45521
+ * @memberof JsonApiDashboardPluginInAttributes
45522
+ */
45523
+ areRelationsValid?: boolean;
45524
+ /**
45525
+ * Free-form JSON content. Maximum supported length is 250000 characters.
45526
+ * @type {object}
45527
+ * @memberof JsonApiDashboardPluginInAttributes
45528
+ */
45529
+ content?: object;
45383
45530
  }
45384
45531
 
45385
45532
  /**
@@ -45670,48 +45817,10 @@ export declare interface JsonApiDashboardPluginPatch {
45670
45817
  id: string;
45671
45818
  /**
45672
45819
  *
45673
- * @type {JsonApiDashboardPluginPatchAttributes}
45820
+ * @type {JsonApiDashboardPluginInAttributes}
45674
45821
  * @memberof JsonApiDashboardPluginPatch
45675
45822
  */
45676
- attributes?: JsonApiDashboardPluginPatchAttributes;
45677
- }
45678
-
45679
- /**
45680
- *
45681
- * @export
45682
- * @interface JsonApiDashboardPluginPatchAttributes
45683
- */
45684
- export declare interface JsonApiDashboardPluginPatchAttributes {
45685
- /**
45686
- *
45687
- * @type {string}
45688
- * @memberof JsonApiDashboardPluginPatchAttributes
45689
- */
45690
- title?: string;
45691
- /**
45692
- *
45693
- * @type {string}
45694
- * @memberof JsonApiDashboardPluginPatchAttributes
45695
- */
45696
- description?: string;
45697
- /**
45698
- *
45699
- * @type {Array<string>}
45700
- * @memberof JsonApiDashboardPluginPatchAttributes
45701
- */
45702
- tags?: Array<string>;
45703
- /**
45704
- *
45705
- * @type {boolean}
45706
- * @memberof JsonApiDashboardPluginPatchAttributes
45707
- */
45708
- areRelationsValid?: boolean;
45709
- /**
45710
- * Free-form JSON content. Maximum supported length is 250000 characters.
45711
- * @type {object}
45712
- * @memberof JsonApiDashboardPluginPatchAttributes
45713
- */
45714
- content?: object;
45823
+ attributes?: JsonApiDashboardPluginInAttributes;
45715
45824
  }
45716
45825
 
45717
45826
  /**
@@ -45754,10 +45863,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
45754
45863
  id?: string;
45755
45864
  /**
45756
45865
  *
45757
- * @type {JsonApiDashboardPluginPatchAttributes}
45866
+ * @type {JsonApiDashboardPluginInAttributes}
45758
45867
  * @memberof JsonApiDashboardPluginPostOptionalId
45759
45868
  */
45760
- attributes?: JsonApiDashboardPluginPatchAttributes;
45869
+ attributes?: JsonApiDashboardPluginInAttributes;
45761
45870
  }
45762
45871
 
45763
45872
  /**
@@ -46291,10 +46400,10 @@ export declare interface JsonApiDataSourceIdentifierOut {
46291
46400
  id: string;
46292
46401
  /**
46293
46402
  *
46294
- * @type {JsonApiDataSourceOutMeta}
46403
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46295
46404
  * @memberof JsonApiDataSourceIdentifierOut
46296
46405
  */
46297
- meta?: JsonApiDataSourceOutMeta;
46406
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46298
46407
  /**
46299
46408
  *
46300
46409
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46349,10 +46458,11 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
46349
46458
  readonly MYSQL: "MYSQL";
46350
46459
  readonly MARIADB: "MARIADB";
46351
46460
  readonly ORACLE: "ORACLE";
46352
- readonly PINOT: "PINOT";
46353
46461
  readonly SINGLESTORE: "SINGLESTORE";
46354
46462
  readonly MOTHERDUCK: "MOTHERDUCK";
46355
46463
  readonly FLEXCONNECT: "FLEXCONNECT";
46464
+ readonly STARROCKS: "STARROCKS";
46465
+ readonly ATHENA: "ATHENA";
46356
46466
  };
46357
46467
 
46358
46468
  export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum[keyof typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum];
@@ -46403,6 +46513,27 @@ export declare interface JsonApiDataSourceIdentifierOutList {
46403
46513
  meta?: JsonApiColorPaletteOutListMeta;
46404
46514
  }
46405
46515
 
46516
+ /**
46517
+ *
46518
+ * @export
46519
+ * @interface JsonApiDataSourceIdentifierOutMeta
46520
+ */
46521
+ export declare interface JsonApiDataSourceIdentifierOutMeta {
46522
+ /**
46523
+ * List of valid permissions for a logged-in user.
46524
+ * @type {Array<string>}
46525
+ * @memberof JsonApiDataSourceIdentifierOutMeta
46526
+ */
46527
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
46528
+ }
46529
+
46530
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
46531
+ readonly MANAGE: "MANAGE";
46532
+ readonly USE: "USE";
46533
+ };
46534
+
46535
+ export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
46536
+
46406
46537
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
46407
46538
  readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
46408
46539
  };
@@ -46429,10 +46560,10 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
46429
46560
  id: string;
46430
46561
  /**
46431
46562
  *
46432
- * @type {JsonApiDataSourceOutMeta}
46563
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46433
46564
  * @memberof JsonApiDataSourceIdentifierOutWithLinks
46434
46565
  */
46435
- meta?: JsonApiDataSourceOutMeta;
46566
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46436
46567
  /**
46437
46568
  *
46438
46569
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46553,10 +46684,10 @@ export declare interface JsonApiDataSourceInAttributes {
46553
46684
  clientSecret?: string | null;
46554
46685
  /**
46555
46686
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46556
- * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46687
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46557
46688
  * @memberof JsonApiDataSourceInAttributes
46558
46689
  */
46559
- parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46690
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46560
46691
  /**
46561
46692
  * Determines how the results coming from a particular datasource should be cached.
46562
46693
  * @type {string}
@@ -46592,10 +46723,11 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
46592
46723
  readonly MYSQL: "MYSQL";
46593
46724
  readonly MARIADB: "MARIADB";
46594
46725
  readonly ORACLE: "ORACLE";
46595
- readonly PINOT: "PINOT";
46596
46726
  readonly SINGLESTORE: "SINGLESTORE";
46597
46727
  readonly MOTHERDUCK: "MOTHERDUCK";
46598
46728
  readonly FLEXCONNECT: "FLEXCONNECT";
46729
+ readonly STARROCKS: "STARROCKS";
46730
+ readonly ATHENA: "ATHENA";
46599
46731
  };
46600
46732
 
46601
46733
  export declare type JsonApiDataSourceInAttributesTypeEnum = typeof JsonApiDataSourceInAttributesTypeEnum[keyof typeof JsonApiDataSourceInAttributesTypeEnum];
@@ -46640,10 +46772,10 @@ export declare interface JsonApiDataSourceOut {
46640
46772
  id: string;
46641
46773
  /**
46642
46774
  *
46643
- * @type {JsonApiDataSourceOutMeta}
46775
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46644
46776
  * @memberof JsonApiDataSourceOut
46645
46777
  */
46646
- meta?: JsonApiDataSourceOutMeta;
46778
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46647
46779
  /**
46648
46780
  *
46649
46781
  * @type {JsonApiDataSourceOutAttributes}
@@ -46696,16 +46828,16 @@ export declare interface JsonApiDataSourceOutAttributes {
46696
46828
  clientId?: string | null;
46697
46829
  /**
46698
46830
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46699
- * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46831
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46700
46832
  * @memberof JsonApiDataSourceOutAttributes
46701
46833
  */
46702
- parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46834
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46703
46835
  /**
46704
46836
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
46705
- * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
46837
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46706
46838
  * @memberof JsonApiDataSourceOutAttributes
46707
46839
  */
46708
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
46840
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46709
46841
  /**
46710
46842
  * Determines how the results coming from a particular datasource should be cached.
46711
46843
  * @type {string}
@@ -46737,6 +46869,26 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
46737
46869
 
46738
46870
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = typeof JsonApiDataSourceOutAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
46739
46871
 
46872
+ /**
46873
+ *
46874
+ * @export
46875
+ * @interface JsonApiDataSourceOutAttributesParameters
46876
+ */
46877
+ export declare interface JsonApiDataSourceOutAttributesParameters {
46878
+ /**
46879
+ *
46880
+ * @type {string}
46881
+ * @memberof JsonApiDataSourceOutAttributesParameters
46882
+ */
46883
+ name: string;
46884
+ /**
46885
+ *
46886
+ * @type {string}
46887
+ * @memberof JsonApiDataSourceOutAttributesParameters
46888
+ */
46889
+ value: string;
46890
+ }
46891
+
46740
46892
  export declare const JsonApiDataSourceOutAttributesTypeEnum: {
46741
46893
  readonly POSTGRESQL: "POSTGRESQL";
46742
46894
  readonly REDSHIFT: "REDSHIFT";
@@ -46757,10 +46909,11 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
46757
46909
  readonly MYSQL: "MYSQL";
46758
46910
  readonly MARIADB: "MARIADB";
46759
46911
  readonly ORACLE: "ORACLE";
46760
- readonly PINOT: "PINOT";
46761
46912
  readonly SINGLESTORE: "SINGLESTORE";
46762
46913
  readonly MOTHERDUCK: "MOTHERDUCK";
46763
46914
  readonly FLEXCONNECT: "FLEXCONNECT";
46915
+ readonly STARROCKS: "STARROCKS";
46916
+ readonly ATHENA: "ATHENA";
46764
46917
  };
46765
46918
 
46766
46919
  export declare type JsonApiDataSourceOutAttributesTypeEnum = typeof JsonApiDataSourceOutAttributesTypeEnum[keyof typeof JsonApiDataSourceOutAttributesTypeEnum];
@@ -46811,27 +46964,6 @@ export declare interface JsonApiDataSourceOutList {
46811
46964
  meta?: JsonApiColorPaletteOutListMeta;
46812
46965
  }
46813
46966
 
46814
- /**
46815
- *
46816
- * @export
46817
- * @interface JsonApiDataSourceOutMeta
46818
- */
46819
- export declare interface JsonApiDataSourceOutMeta {
46820
- /**
46821
- * List of valid permissions for a logged-in user.
46822
- * @type {Array<string>}
46823
- * @memberof JsonApiDataSourceOutMeta
46824
- */
46825
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
46826
- }
46827
-
46828
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
46829
- readonly MANAGE: "MANAGE";
46830
- readonly USE: "USE";
46831
- };
46832
-
46833
- export declare type JsonApiDataSourceOutMetaPermissionsEnum = typeof JsonApiDataSourceOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
46834
-
46835
46967
  export declare const JsonApiDataSourceOutTypeEnum: {
46836
46968
  readonly DATA_SOURCE: "dataSource";
46837
46969
  };
@@ -46858,10 +46990,10 @@ export declare interface JsonApiDataSourceOutWithLinks {
46858
46990
  id: string;
46859
46991
  /**
46860
46992
  *
46861
- * @type {JsonApiDataSourceOutMeta}
46993
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46862
46994
  * @memberof JsonApiDataSourceOutWithLinks
46863
46995
  */
46864
- meta?: JsonApiDataSourceOutMeta;
46996
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46865
46997
  /**
46866
46998
  *
46867
46999
  * @type {JsonApiDataSourceOutAttributes}
@@ -46982,10 +47114,10 @@ export declare interface JsonApiDataSourcePatchAttributes {
46982
47114
  clientSecret?: string | null;
46983
47115
  /**
46984
47116
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46985
- * @type {Array<JsonApiDataSourcePatchAttributesParameters>}
47117
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46986
47118
  * @memberof JsonApiDataSourcePatchAttributes
46987
47119
  */
46988
- parameters?: Array<JsonApiDataSourcePatchAttributesParameters> | null;
47120
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46989
47121
  /**
46990
47122
  * Determines how the results coming from a particular datasource should be cached.
46991
47123
  * @type {string}
@@ -47001,26 +47133,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
47001
47133
 
47002
47134
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
47003
47135
 
47004
- /**
47005
- *
47006
- * @export
47007
- * @interface JsonApiDataSourcePatchAttributesParameters
47008
- */
47009
- export declare interface JsonApiDataSourcePatchAttributesParameters {
47010
- /**
47011
- *
47012
- * @type {string}
47013
- * @memberof JsonApiDataSourcePatchAttributesParameters
47014
- */
47015
- name: string;
47016
- /**
47017
- *
47018
- * @type {string}
47019
- * @memberof JsonApiDataSourcePatchAttributesParameters
47020
- */
47021
- value: string;
47022
- }
47023
-
47024
47136
  export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
47025
47137
  readonly POSTGRESQL: "POSTGRESQL";
47026
47138
  readonly REDSHIFT: "REDSHIFT";
@@ -47041,10 +47153,11 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
47041
47153
  readonly MYSQL: "MYSQL";
47042
47154
  readonly MARIADB: "MARIADB";
47043
47155
  readonly ORACLE: "ORACLE";
47044
- readonly PINOT: "PINOT";
47045
47156
  readonly SINGLESTORE: "SINGLESTORE";
47046
47157
  readonly MOTHERDUCK: "MOTHERDUCK";
47047
47158
  readonly FLEXCONNECT: "FLEXCONNECT";
47159
+ readonly STARROCKS: "STARROCKS";
47160
+ readonly ATHENA: "ATHENA";
47048
47161
  };
47049
47162
 
47050
47163
  export declare type JsonApiDataSourcePatchAttributesTypeEnum = typeof JsonApiDataSourcePatchAttributesTypeEnum[keyof typeof JsonApiDataSourcePatchAttributesTypeEnum];
@@ -47225,16 +47338,54 @@ export declare interface JsonApiExportDefinitionIn {
47225
47338
  id: string;
47226
47339
  /**
47227
47340
  *
47228
- * @type {JsonApiExportDefinitionPatchAttributes}
47341
+ * @type {JsonApiExportDefinitionInAttributes}
47229
47342
  * @memberof JsonApiExportDefinitionIn
47230
47343
  */
47231
- attributes?: JsonApiExportDefinitionPatchAttributes;
47344
+ attributes?: JsonApiExportDefinitionInAttributes;
47232
47345
  /**
47233
47346
  *
47234
- * @type {JsonApiExportDefinitionPatchRelationships}
47347
+ * @type {JsonApiExportDefinitionInRelationships}
47235
47348
  * @memberof JsonApiExportDefinitionIn
47236
47349
  */
47237
- relationships?: JsonApiExportDefinitionPatchRelationships;
47350
+ relationships?: JsonApiExportDefinitionInRelationships;
47351
+ }
47352
+
47353
+ /**
47354
+ *
47355
+ * @export
47356
+ * @interface JsonApiExportDefinitionInAttributes
47357
+ */
47358
+ export declare interface JsonApiExportDefinitionInAttributes {
47359
+ /**
47360
+ *
47361
+ * @type {string}
47362
+ * @memberof JsonApiExportDefinitionInAttributes
47363
+ */
47364
+ title?: string;
47365
+ /**
47366
+ *
47367
+ * @type {string}
47368
+ * @memberof JsonApiExportDefinitionInAttributes
47369
+ */
47370
+ description?: string;
47371
+ /**
47372
+ *
47373
+ * @type {Array<string>}
47374
+ * @memberof JsonApiExportDefinitionInAttributes
47375
+ */
47376
+ tags?: Array<string>;
47377
+ /**
47378
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
47379
+ * @type {VisualExportRequest | TabularExportRequest}
47380
+ * @memberof JsonApiExportDefinitionInAttributes
47381
+ */
47382
+ requestPayload?: VisualExportRequest | TabularExportRequest;
47383
+ /**
47384
+ *
47385
+ * @type {boolean}
47386
+ * @memberof JsonApiExportDefinitionInAttributes
47387
+ */
47388
+ areRelationsValid?: boolean;
47238
47389
  }
47239
47390
 
47240
47391
  /**
@@ -47251,6 +47402,26 @@ export declare interface JsonApiExportDefinitionInDocument {
47251
47402
  data: JsonApiExportDefinitionIn;
47252
47403
  }
47253
47404
 
47405
+ /**
47406
+ *
47407
+ * @export
47408
+ * @interface JsonApiExportDefinitionInRelationships
47409
+ */
47410
+ export declare interface JsonApiExportDefinitionInRelationships {
47411
+ /**
47412
+ *
47413
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
47414
+ * @memberof JsonApiExportDefinitionInRelationships
47415
+ */
47416
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47417
+ /**
47418
+ *
47419
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
47420
+ * @memberof JsonApiExportDefinitionInRelationships
47421
+ */
47422
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47423
+ }
47424
+
47254
47425
  export declare const JsonApiExportDefinitionInTypeEnum: {
47255
47426
  readonly EXPORT_DEFINITION: "exportDefinition";
47256
47427
  };
@@ -47449,10 +47620,10 @@ export declare interface JsonApiExportDefinitionOutRelationships {
47449
47620
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47450
47621
  /**
47451
47622
  *
47452
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
47623
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
47453
47624
  * @memberof JsonApiExportDefinitionOutRelationships
47454
47625
  */
47455
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47626
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47456
47627
  /**
47457
47628
  *
47458
47629
  * @type {JsonApiExportDefinitionOutRelationshipsAutomation}
@@ -47473,20 +47644,6 @@ export declare interface JsonApiExportDefinitionOutRelationships {
47473
47644
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47474
47645
  }
47475
47646
 
47476
- /**
47477
- *
47478
- * @export
47479
- * @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
47480
- */
47481
- export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
47482
- /**
47483
- *
47484
- * @type {JsonApiAnalyticalDashboardToOneLinkage}
47485
- * @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
47486
- */
47487
- data: JsonApiAnalyticalDashboardToOneLinkage | null;
47488
- }
47489
-
47490
47647
  /**
47491
47648
  *
47492
47649
  * @export
@@ -47591,54 +47748,16 @@ export declare interface JsonApiExportDefinitionPatch {
47591
47748
  id: string;
47592
47749
  /**
47593
47750
  *
47594
- * @type {JsonApiExportDefinitionPatchAttributes}
47751
+ * @type {JsonApiExportDefinitionInAttributes}
47595
47752
  * @memberof JsonApiExportDefinitionPatch
47596
47753
  */
47597
- attributes?: JsonApiExportDefinitionPatchAttributes;
47754
+ attributes?: JsonApiExportDefinitionInAttributes;
47598
47755
  /**
47599
47756
  *
47600
- * @type {JsonApiExportDefinitionPatchRelationships}
47757
+ * @type {JsonApiExportDefinitionInRelationships}
47601
47758
  * @memberof JsonApiExportDefinitionPatch
47602
47759
  */
47603
- relationships?: JsonApiExportDefinitionPatchRelationships;
47604
- }
47605
-
47606
- /**
47607
- *
47608
- * @export
47609
- * @interface JsonApiExportDefinitionPatchAttributes
47610
- */
47611
- export declare interface JsonApiExportDefinitionPatchAttributes {
47612
- /**
47613
- *
47614
- * @type {string}
47615
- * @memberof JsonApiExportDefinitionPatchAttributes
47616
- */
47617
- title?: string;
47618
- /**
47619
- *
47620
- * @type {string}
47621
- * @memberof JsonApiExportDefinitionPatchAttributes
47622
- */
47623
- description?: string;
47624
- /**
47625
- *
47626
- * @type {Array<string>}
47627
- * @memberof JsonApiExportDefinitionPatchAttributes
47628
- */
47629
- tags?: Array<string>;
47630
- /**
47631
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
47632
- * @type {VisualExportRequest | TabularExportRequest}
47633
- * @memberof JsonApiExportDefinitionPatchAttributes
47634
- */
47635
- requestPayload?: VisualExportRequest | TabularExportRequest;
47636
- /**
47637
- *
47638
- * @type {boolean}
47639
- * @memberof JsonApiExportDefinitionPatchAttributes
47640
- */
47641
- areRelationsValid?: boolean;
47760
+ relationships?: JsonApiExportDefinitionInRelationships;
47642
47761
  }
47643
47762
 
47644
47763
  /**
@@ -47655,26 +47774,6 @@ export declare interface JsonApiExportDefinitionPatchDocument {
47655
47774
  data: JsonApiExportDefinitionPatch;
47656
47775
  }
47657
47776
 
47658
- /**
47659
- *
47660
- * @export
47661
- * @interface JsonApiExportDefinitionPatchRelationships
47662
- */
47663
- export declare interface JsonApiExportDefinitionPatchRelationships {
47664
- /**
47665
- *
47666
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
47667
- * @memberof JsonApiExportDefinitionPatchRelationships
47668
- */
47669
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47670
- /**
47671
- *
47672
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
47673
- * @memberof JsonApiExportDefinitionPatchRelationships
47674
- */
47675
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47676
- }
47677
-
47678
47777
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
47679
47778
  readonly EXPORT_DEFINITION: "exportDefinition";
47680
47779
  };
@@ -47701,16 +47800,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
47701
47800
  id?: string;
47702
47801
  /**
47703
47802
  *
47704
- * @type {JsonApiExportDefinitionPatchAttributes}
47803
+ * @type {JsonApiExportDefinitionInAttributes}
47705
47804
  * @memberof JsonApiExportDefinitionPostOptionalId
47706
47805
  */
47707
- attributes?: JsonApiExportDefinitionPatchAttributes;
47806
+ attributes?: JsonApiExportDefinitionInAttributes;
47708
47807
  /**
47709
47808
  *
47710
- * @type {JsonApiExportDefinitionPatchRelationships}
47809
+ * @type {JsonApiExportDefinitionInRelationships}
47711
47810
  * @memberof JsonApiExportDefinitionPostOptionalId
47712
47811
  */
47713
- relationships?: JsonApiExportDefinitionPatchRelationships;
47812
+ relationships?: JsonApiExportDefinitionInRelationships;
47714
47813
  }
47715
47814
 
47716
47815
  /**
@@ -47819,18 +47918,90 @@ export declare interface JsonApiExportTemplateOutAttributes {
47819
47918
  name: string;
47820
47919
  /**
47821
47920
  *
47822
- * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
47921
+ * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47823
47922
  * @memberof JsonApiExportTemplateOutAttributes
47824
47923
  */
47825
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
47924
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47826
47925
  /**
47827
47926
  *
47828
- * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
47927
+ * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47829
47928
  * @memberof JsonApiExportTemplateOutAttributes
47830
47929
  */
47831
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47930
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47832
47931
  }
47833
47932
 
47933
+ /**
47934
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47935
+ * @export
47936
+ * @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47937
+ */
47938
+ export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
47939
+ /**
47940
+ * Export types this template applies to.
47941
+ * @type {Array<string>}
47942
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47943
+ */
47944
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
47945
+ /**
47946
+ *
47947
+ * @type {CoverSlideTemplate}
47948
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47949
+ */
47950
+ coverSlide?: CoverSlideTemplate | null;
47951
+ /**
47952
+ *
47953
+ * @type {IntroSlideTemplate}
47954
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47955
+ */
47956
+ introSlide?: IntroSlideTemplate | null;
47957
+ /**
47958
+ *
47959
+ * @type {SectionSlideTemplate}
47960
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47961
+ */
47962
+ sectionSlide?: SectionSlideTemplate | null;
47963
+ /**
47964
+ *
47965
+ * @type {ContentSlideTemplate}
47966
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47967
+ */
47968
+ contentSlide?: ContentSlideTemplate | null;
47969
+ }
47970
+
47971
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
47972
+ readonly PDF: "PDF";
47973
+ readonly PPTX: "PPTX";
47974
+ };
47975
+
47976
+ export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
47977
+
47978
+ /**
47979
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47980
+ * @export
47981
+ * @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47982
+ */
47983
+ export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
47984
+ /**
47985
+ * Export types this template applies to.
47986
+ * @type {Array<string>}
47987
+ * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47988
+ */
47989
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
47990
+ /**
47991
+ *
47992
+ * @type {ContentSlideTemplate}
47993
+ * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47994
+ */
47995
+ contentSlide?: ContentSlideTemplate | null;
47996
+ }
47997
+
47998
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
47999
+ readonly PDF: "PDF";
48000
+ readonly PPTX: "PPTX";
48001
+ };
48002
+
48003
+ export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
48004
+
47834
48005
  /**
47835
48006
  *
47836
48007
  * @export
@@ -47961,90 +48132,18 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47961
48132
  name?: string;
47962
48133
  /**
47963
48134
  *
47964
- * @type {JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate}
48135
+ * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47965
48136
  * @memberof JsonApiExportTemplatePatchAttributes
47966
48137
  */
47967
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
48138
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47968
48139
  /**
47969
48140
  *
47970
- * @type {JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate}
48141
+ * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47971
48142
  * @memberof JsonApiExportTemplatePatchAttributes
47972
48143
  */
47973
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
47974
- }
47975
-
47976
- /**
47977
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47978
- * @export
47979
- * @interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47980
- */
47981
- export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
47982
- /**
47983
- * Export types this template applies to.
47984
- * @type {Array<string>}
47985
- * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47986
- */
47987
- appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
47988
- /**
47989
- *
47990
- * @type {CoverSlideTemplate}
47991
- * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47992
- */
47993
- coverSlide?: CoverSlideTemplate | null;
47994
- /**
47995
- *
47996
- * @type {IntroSlideTemplate}
47997
- * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
47998
- */
47999
- introSlide?: IntroSlideTemplate | null;
48000
- /**
48001
- *
48002
- * @type {SectionSlideTemplate}
48003
- * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
48004
- */
48005
- sectionSlide?: SectionSlideTemplate | null;
48006
- /**
48007
- *
48008
- * @type {ContentSlideTemplate}
48009
- * @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
48010
- */
48011
- contentSlide?: ContentSlideTemplate | null;
48012
- }
48013
-
48014
- export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
48015
- readonly PDF: "PDF";
48016
- readonly PPTX: "PPTX";
48017
- };
48018
-
48019
- export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
48020
-
48021
- /**
48022
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48023
- * @export
48024
- * @interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48025
- */
48026
- export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
48027
- /**
48028
- * Export types this template applies to.
48029
- * @type {Array<string>}
48030
- * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48031
- */
48032
- appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
48033
- /**
48034
- *
48035
- * @type {ContentSlideTemplate}
48036
- * @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
48037
- */
48038
- contentSlide?: ContentSlideTemplate | null;
48144
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
48039
48145
  }
48040
48146
 
48041
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
48042
- readonly PDF: "PDF";
48043
- readonly PPTX: "PPTX";
48044
- };
48045
-
48046
- export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
48047
-
48048
48147
  /**
48049
48148
  *
48050
48149
  * @export
@@ -48379,10 +48478,10 @@ export declare interface JsonApiFilterContextIn {
48379
48478
  id: string;
48380
48479
  /**
48381
48480
  *
48382
- * @type {JsonApiFilterContextOutAttributes}
48481
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48383
48482
  * @memberof JsonApiFilterContextIn
48384
48483
  */
48385
- attributes: JsonApiFilterContextOutAttributes;
48484
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48386
48485
  }
48387
48486
 
48388
48487
  /**
@@ -48457,10 +48556,10 @@ export declare interface JsonApiFilterContextOut {
48457
48556
  meta?: JsonApiVisualizationObjectOutMeta;
48458
48557
  /**
48459
48558
  *
48460
- * @type {JsonApiFilterContextOutAttributes}
48559
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48461
48560
  * @memberof JsonApiFilterContextOut
48462
48561
  */
48463
- attributes: JsonApiFilterContextOutAttributes;
48562
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48464
48563
  /**
48465
48564
  *
48466
48565
  * @type {JsonApiFilterContextOutRelationships}
@@ -48469,44 +48568,6 @@ export declare interface JsonApiFilterContextOut {
48469
48568
  relationships?: JsonApiFilterContextOutRelationships;
48470
48569
  }
48471
48570
 
48472
- /**
48473
- *
48474
- * @export
48475
- * @interface JsonApiFilterContextOutAttributes
48476
- */
48477
- export declare interface JsonApiFilterContextOutAttributes {
48478
- /**
48479
- *
48480
- * @type {string}
48481
- * @memberof JsonApiFilterContextOutAttributes
48482
- */
48483
- title?: string;
48484
- /**
48485
- *
48486
- * @type {string}
48487
- * @memberof JsonApiFilterContextOutAttributes
48488
- */
48489
- description?: string;
48490
- /**
48491
- *
48492
- * @type {Array<string>}
48493
- * @memberof JsonApiFilterContextOutAttributes
48494
- */
48495
- tags?: Array<string>;
48496
- /**
48497
- *
48498
- * @type {boolean}
48499
- * @memberof JsonApiFilterContextOutAttributes
48500
- */
48501
- areRelationsValid?: boolean;
48502
- /**
48503
- * Free-form JSON content. Maximum supported length is 250000 characters.
48504
- * @type {object}
48505
- * @memberof JsonApiFilterContextOutAttributes
48506
- */
48507
- content: object;
48508
- }
48509
-
48510
48571
  /**
48511
48572
  *
48512
48573
  * @export
@@ -48629,10 +48690,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
48629
48690
  meta?: JsonApiVisualizationObjectOutMeta;
48630
48691
  /**
48631
48692
  *
48632
- * @type {JsonApiFilterContextOutAttributes}
48693
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48633
48694
  * @memberof JsonApiFilterContextOutWithLinks
48634
48695
  */
48635
- attributes: JsonApiFilterContextOutAttributes;
48696
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48636
48697
  /**
48637
48698
  *
48638
48699
  * @type {JsonApiFilterContextOutRelationships}
@@ -48719,10 +48780,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
48719
48780
  id?: string;
48720
48781
  /**
48721
48782
  *
48722
- * @type {JsonApiFilterContextOutAttributes}
48783
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48723
48784
  * @memberof JsonApiFilterContextPostOptionalId
48724
48785
  */
48725
- attributes: JsonApiFilterContextOutAttributes;
48786
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48726
48787
  }
48727
48788
 
48728
48789
  /**
@@ -48765,16 +48826,60 @@ export declare interface JsonApiFilterViewIn {
48765
48826
  id: string;
48766
48827
  /**
48767
48828
  *
48768
- * @type {JsonApiFilterViewOutAttributes}
48829
+ * @type {JsonApiFilterViewInAttributes}
48769
48830
  * @memberof JsonApiFilterViewIn
48770
48831
  */
48771
- attributes: JsonApiFilterViewOutAttributes;
48832
+ attributes: JsonApiFilterViewInAttributes;
48772
48833
  /**
48773
48834
  *
48774
- * @type {JsonApiFilterViewOutRelationships}
48835
+ * @type {JsonApiFilterViewInRelationships}
48775
48836
  * @memberof JsonApiFilterViewIn
48776
48837
  */
48777
- relationships?: JsonApiFilterViewOutRelationships;
48838
+ relationships?: JsonApiFilterViewInRelationships;
48839
+ }
48840
+
48841
+ /**
48842
+ *
48843
+ * @export
48844
+ * @interface JsonApiFilterViewInAttributes
48845
+ */
48846
+ export declare interface JsonApiFilterViewInAttributes {
48847
+ /**
48848
+ *
48849
+ * @type {string}
48850
+ * @memberof JsonApiFilterViewInAttributes
48851
+ */
48852
+ title: string;
48853
+ /**
48854
+ *
48855
+ * @type {string}
48856
+ * @memberof JsonApiFilterViewInAttributes
48857
+ */
48858
+ description?: string;
48859
+ /**
48860
+ *
48861
+ * @type {Array<string>}
48862
+ * @memberof JsonApiFilterViewInAttributes
48863
+ */
48864
+ tags?: Array<string>;
48865
+ /**
48866
+ *
48867
+ * @type {boolean}
48868
+ * @memberof JsonApiFilterViewInAttributes
48869
+ */
48870
+ areRelationsValid?: boolean;
48871
+ /**
48872
+ * Indicator whether the filter view should by applied by default.
48873
+ * @type {boolean}
48874
+ * @memberof JsonApiFilterViewInAttributes
48875
+ */
48876
+ isDefault?: boolean;
48877
+ /**
48878
+ * The respective filter context.
48879
+ * @type {object}
48880
+ * @memberof JsonApiFilterViewInAttributes
48881
+ */
48882
+ content: object;
48778
48883
  }
48779
48884
 
48780
48885
  /**
@@ -48791,6 +48896,40 @@ export declare interface JsonApiFilterViewInDocument {
48791
48896
  data: JsonApiFilterViewIn;
48792
48897
  }
48793
48898
 
48899
+ /**
48900
+ *
48901
+ * @export
48902
+ * @interface JsonApiFilterViewInRelationships
48903
+ */
48904
+ export declare interface JsonApiFilterViewInRelationships {
48905
+ /**
48906
+ *
48907
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
48908
+ * @memberof JsonApiFilterViewInRelationships
48909
+ */
48910
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
48911
+ /**
48912
+ *
48913
+ * @type {JsonApiFilterViewInRelationshipsUser}
48914
+ * @memberof JsonApiFilterViewInRelationships
48915
+ */
48916
+ user?: JsonApiFilterViewInRelationshipsUser;
48917
+ }
48918
+
48919
+ /**
48920
+ *
48921
+ * @export
48922
+ * @interface JsonApiFilterViewInRelationshipsUser
48923
+ */
48924
+ export declare interface JsonApiFilterViewInRelationshipsUser {
48925
+ /**
48926
+ *
48927
+ * @type {JsonApiUserToOneLinkage}
48928
+ * @memberof JsonApiFilterViewInRelationshipsUser
48929
+ */
48930
+ data: JsonApiUserToOneLinkage | null;
48931
+ }
48932
+
48794
48933
  export declare const JsonApiFilterViewInTypeEnum: {
48795
48934
  readonly FILTER_VIEW: "filterView";
48796
48935
  };
@@ -48817,60 +48956,16 @@ export declare interface JsonApiFilterViewOut {
48817
48956
  id: string;
48818
48957
  /**
48819
48958
  *
48820
- * @type {JsonApiFilterViewOutAttributes}
48959
+ * @type {JsonApiFilterViewInAttributes}
48821
48960
  * @memberof JsonApiFilterViewOut
48822
48961
  */
48823
- attributes: JsonApiFilterViewOutAttributes;
48962
+ attributes: JsonApiFilterViewInAttributes;
48824
48963
  /**
48825
48964
  *
48826
- * @type {JsonApiFilterViewOutRelationships}
48965
+ * @type {JsonApiFilterViewInRelationships}
48827
48966
  * @memberof JsonApiFilterViewOut
48828
48967
  */
48829
- relationships?: JsonApiFilterViewOutRelationships;
48830
- }
48831
-
48832
- /**
48833
- *
48834
- * @export
48835
- * @interface JsonApiFilterViewOutAttributes
48836
- */
48837
- export declare interface JsonApiFilterViewOutAttributes {
48838
- /**
48839
- *
48840
- * @type {string}
48841
- * @memberof JsonApiFilterViewOutAttributes
48842
- */
48843
- title: string;
48844
- /**
48845
- *
48846
- * @type {string}
48847
- * @memberof JsonApiFilterViewOutAttributes
48848
- */
48849
- description?: string;
48850
- /**
48851
- *
48852
- * @type {Array<string>}
48853
- * @memberof JsonApiFilterViewOutAttributes
48854
- */
48855
- tags?: Array<string>;
48856
- /**
48857
- *
48858
- * @type {boolean}
48859
- * @memberof JsonApiFilterViewOutAttributes
48860
- */
48861
- areRelationsValid?: boolean;
48862
- /**
48863
- * Indicator whether the filter view should by applied by default.
48864
- * @type {boolean}
48865
- * @memberof JsonApiFilterViewOutAttributes
48866
- */
48867
- isDefault?: boolean;
48868
- /**
48869
- * The respective filter context.
48870
- * @type {object}
48871
- * @memberof JsonApiFilterViewOutAttributes
48872
- */
48873
- content: object;
48968
+ relationships?: JsonApiFilterViewInRelationships;
48874
48969
  }
48875
48970
 
48876
48971
  /**
@@ -48937,40 +49032,6 @@ export declare interface JsonApiFilterViewOutList {
48937
49032
  included?: Array<JsonApiFilterViewOutIncludes>;
48938
49033
  }
48939
49034
 
48940
- /**
48941
- *
48942
- * @export
48943
- * @interface JsonApiFilterViewOutRelationships
48944
- */
48945
- export declare interface JsonApiFilterViewOutRelationships {
48946
- /**
48947
- *
48948
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
48949
- * @memberof JsonApiFilterViewOutRelationships
48950
- */
48951
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
48952
- /**
48953
- *
48954
- * @type {JsonApiFilterViewOutRelationshipsUser}
48955
- * @memberof JsonApiFilterViewOutRelationships
48956
- */
48957
- user?: JsonApiFilterViewOutRelationshipsUser;
48958
- }
48959
-
48960
- /**
48961
- *
48962
- * @export
48963
- * @interface JsonApiFilterViewOutRelationshipsUser
48964
- */
48965
- export declare interface JsonApiFilterViewOutRelationshipsUser {
48966
- /**
48967
- *
48968
- * @type {JsonApiUserToOneLinkage}
48969
- * @memberof JsonApiFilterViewOutRelationshipsUser
48970
- */
48971
- data: JsonApiUserToOneLinkage | null;
48972
- }
48973
-
48974
49035
  export declare const JsonApiFilterViewOutTypeEnum: {
48975
49036
  readonly FILTER_VIEW: "filterView";
48976
49037
  };
@@ -48997,16 +49058,16 @@ export declare interface JsonApiFilterViewOutWithLinks {
48997
49058
  id: string;
48998
49059
  /**
48999
49060
  *
49000
- * @type {JsonApiFilterViewOutAttributes}
49061
+ * @type {JsonApiFilterViewInAttributes}
49001
49062
  * @memberof JsonApiFilterViewOutWithLinks
49002
49063
  */
49003
- attributes: JsonApiFilterViewOutAttributes;
49064
+ attributes: JsonApiFilterViewInAttributes;
49004
49065
  /**
49005
49066
  *
49006
- * @type {JsonApiFilterViewOutRelationships}
49067
+ * @type {JsonApiFilterViewInRelationships}
49007
49068
  * @memberof JsonApiFilterViewOutWithLinks
49008
49069
  */
49009
- relationships?: JsonApiFilterViewOutRelationships;
49070
+ relationships?: JsonApiFilterViewInRelationships;
49010
49071
  /**
49011
49072
  *
49012
49073
  * @type {ObjectLinks}
@@ -49047,10 +49108,10 @@ export declare interface JsonApiFilterViewPatch {
49047
49108
  attributes: JsonApiFilterViewPatchAttributes;
49048
49109
  /**
49049
49110
  *
49050
- * @type {JsonApiFilterViewOutRelationships}
49111
+ * @type {JsonApiFilterViewInRelationships}
49051
49112
  * @memberof JsonApiFilterViewPatch
49052
49113
  */
49053
- relationships?: JsonApiFilterViewOutRelationships;
49114
+ relationships?: JsonApiFilterViewInRelationships;
49054
49115
  }
49055
49116
 
49056
49117
  /**
@@ -49476,10 +49537,10 @@ export declare interface JsonApiJwkIn {
49476
49537
  id: string;
49477
49538
  /**
49478
49539
  *
49479
- * @type {JsonApiJwkPatchAttributes}
49540
+ * @type {JsonApiJwkOutAttributes}
49480
49541
  * @memberof JsonApiJwkIn
49481
49542
  */
49482
- attributes?: JsonApiJwkPatchAttributes;
49543
+ attributes?: JsonApiJwkOutAttributes;
49483
49544
  }
49484
49545
 
49485
49546
  /**
@@ -49522,10 +49583,24 @@ export declare interface JsonApiJwkOut {
49522
49583
  id: string;
49523
49584
  /**
49524
49585
  *
49525
- * @type {JsonApiJwkPatchAttributes}
49586
+ * @type {JsonApiJwkOutAttributes}
49526
49587
  * @memberof JsonApiJwkOut
49527
49588
  */
49528
- attributes?: JsonApiJwkPatchAttributes;
49589
+ attributes?: JsonApiJwkOutAttributes;
49590
+ }
49591
+
49592
+ /**
49593
+ *
49594
+ * @export
49595
+ * @interface JsonApiJwkOutAttributes
49596
+ */
49597
+ export declare interface JsonApiJwkOutAttributes {
49598
+ /**
49599
+ * Specification of the cryptographic key
49600
+ * @type {RsaSpecification}
49601
+ * @memberof JsonApiJwkOutAttributes
49602
+ */
49603
+ content?: RsaSpecification;
49529
49604
  }
49530
49605
 
49531
49606
  /**
@@ -49600,10 +49675,10 @@ export declare interface JsonApiJwkOutWithLinks {
49600
49675
  id: string;
49601
49676
  /**
49602
49677
  *
49603
- * @type {JsonApiJwkPatchAttributes}
49678
+ * @type {JsonApiJwkOutAttributes}
49604
49679
  * @memberof JsonApiJwkOutWithLinks
49605
49680
  */
49606
- attributes?: JsonApiJwkPatchAttributes;
49681
+ attributes?: JsonApiJwkOutAttributes;
49607
49682
  /**
49608
49683
  *
49609
49684
  * @type {ObjectLinks}
@@ -49638,24 +49713,10 @@ export declare interface JsonApiJwkPatch {
49638
49713
  id: string;
49639
49714
  /**
49640
49715
  *
49641
- * @type {JsonApiJwkPatchAttributes}
49716
+ * @type {JsonApiJwkOutAttributes}
49642
49717
  * @memberof JsonApiJwkPatch
49643
49718
  */
49644
- attributes?: JsonApiJwkPatchAttributes;
49645
- }
49646
-
49647
- /**
49648
- *
49649
- * @export
49650
- * @interface JsonApiJwkPatchAttributes
49651
- */
49652
- export declare interface JsonApiJwkPatchAttributes {
49653
- /**
49654
- * Specification of the cryptographic key
49655
- * @type {RsaSpecification}
49656
- * @memberof JsonApiJwkPatchAttributes
49657
- */
49658
- content?: RsaSpecification;
49719
+ attributes?: JsonApiJwkOutAttributes;
49659
49720
  }
49660
49721
 
49661
49722
  /**
@@ -50846,12 +50907,85 @@ export declare interface JsonApiNotificationChannelIn {
50846
50907
  id: string;
50847
50908
  /**
50848
50909
  *
50849
- * @type {JsonApiNotificationChannelPatchAttributes}
50910
+ * @type {JsonApiNotificationChannelInAttributes}
50850
50911
  * @memberof JsonApiNotificationChannelIn
50851
50912
  */
50852
- attributes?: JsonApiNotificationChannelPatchAttributes;
50913
+ attributes?: JsonApiNotificationChannelInAttributes;
50914
+ }
50915
+
50916
+ /**
50917
+ *
50918
+ * @export
50919
+ * @interface JsonApiNotificationChannelInAttributes
50920
+ */
50921
+ export declare interface JsonApiNotificationChannelInAttributes {
50922
+ /**
50923
+ *
50924
+ * @type {string}
50925
+ * @memberof JsonApiNotificationChannelInAttributes
50926
+ */
50927
+ name?: string | null;
50928
+ /**
50929
+ *
50930
+ * @type {string}
50931
+ * @memberof JsonApiNotificationChannelInAttributes
50932
+ */
50933
+ description?: string | null;
50934
+ /**
50935
+ * The destination where the notifications are to be sent.
50936
+ * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
50937
+ * @memberof JsonApiNotificationChannelInAttributes
50938
+ */
50939
+ destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
50940
+ /**
50941
+ * 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}.
50942
+ * @type {string}
50943
+ * @memberof JsonApiNotificationChannelInAttributes
50944
+ */
50945
+ customDashboardUrl?: string;
50946
+ /**
50947
+ * 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
50948
+ * @type {string}
50949
+ * @memberof JsonApiNotificationChannelInAttributes
50950
+ */
50951
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
50952
+ /**
50953
+ * 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
50954
+ * @type {string}
50955
+ * @memberof JsonApiNotificationChannelInAttributes
50956
+ */
50957
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
50958
+ /**
50959
+ * 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
50960
+ * @type {string}
50961
+ * @memberof JsonApiNotificationChannelInAttributes
50962
+ */
50963
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
50853
50964
  }
50854
50965
 
50966
+ export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
50967
+ readonly CREATOR: "CREATOR";
50968
+ readonly INTERNAL: "INTERNAL";
50969
+ readonly EXTERNAL: "EXTERNAL";
50970
+ };
50971
+
50972
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
50973
+
50974
+ export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
50975
+ readonly HIDDEN: "HIDDEN";
50976
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
50977
+ readonly ALL: "ALL";
50978
+ };
50979
+
50980
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
50981
+
50982
+ export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
50983
+ readonly DISABLED: "DISABLED";
50984
+ readonly ENABLED: "ENABLED";
50985
+ };
50986
+
50987
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
50988
+
50855
50989
  /**
50856
50990
  *
50857
50991
  * @export
@@ -51122,85 +51256,12 @@ export declare interface JsonApiNotificationChannelPatch {
51122
51256
  id: string;
51123
51257
  /**
51124
51258
  *
51125
- * @type {JsonApiNotificationChannelPatchAttributes}
51259
+ * @type {JsonApiNotificationChannelInAttributes}
51126
51260
  * @memberof JsonApiNotificationChannelPatch
51127
51261
  */
51128
- attributes?: JsonApiNotificationChannelPatchAttributes;
51129
- }
51130
-
51131
- /**
51132
- *
51133
- * @export
51134
- * @interface JsonApiNotificationChannelPatchAttributes
51135
- */
51136
- export declare interface JsonApiNotificationChannelPatchAttributes {
51137
- /**
51138
- *
51139
- * @type {string}
51140
- * @memberof JsonApiNotificationChannelPatchAttributes
51141
- */
51142
- name?: string | null;
51143
- /**
51144
- *
51145
- * @type {string}
51146
- * @memberof JsonApiNotificationChannelPatchAttributes
51147
- */
51148
- description?: string | null;
51149
- /**
51150
- * The destination where the notifications are to be sent.
51151
- * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
51152
- * @memberof JsonApiNotificationChannelPatchAttributes
51153
- */
51154
- destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
51155
- /**
51156
- * 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}.
51157
- * @type {string}
51158
- * @memberof JsonApiNotificationChannelPatchAttributes
51159
- */
51160
- customDashboardUrl?: string;
51161
- /**
51162
- * 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
51163
- * @type {string}
51164
- * @memberof JsonApiNotificationChannelPatchAttributes
51165
- */
51166
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
51167
- /**
51168
- * 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
51169
- * @type {string}
51170
- * @memberof JsonApiNotificationChannelPatchAttributes
51171
- */
51172
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
51173
- /**
51174
- * 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
51175
- * @type {string}
51176
- * @memberof JsonApiNotificationChannelPatchAttributes
51177
- */
51178
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
51262
+ attributes?: JsonApiNotificationChannelInAttributes;
51179
51263
  }
51180
51264
 
51181
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
51182
- readonly CREATOR: "CREATOR";
51183
- readonly INTERNAL: "INTERNAL";
51184
- readonly EXTERNAL: "EXTERNAL";
51185
- };
51186
-
51187
- export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
51188
-
51189
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
51190
- readonly HIDDEN: "HIDDEN";
51191
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
51192
- readonly ALL: "ALL";
51193
- };
51194
-
51195
- export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
51196
-
51197
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
51198
- readonly DISABLED: "DISABLED";
51199
- readonly ENABLED: "ENABLED";
51200
- };
51201
-
51202
- export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
51203
-
51204
51265
  /**
51205
51266
  *
51206
51267
  * @export
@@ -51241,10 +51302,10 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
51241
51302
  id?: string;
51242
51303
  /**
51243
51304
  *
51244
- * @type {JsonApiNotificationChannelPatchAttributes}
51305
+ * @type {JsonApiNotificationChannelInAttributes}
51245
51306
  * @memberof JsonApiNotificationChannelPostOptionalId
51246
51307
  */
51247
- attributes?: JsonApiNotificationChannelPatchAttributes;
51308
+ attributes?: JsonApiNotificationChannelInAttributes;
51248
51309
  }
51249
51310
 
51250
51311
  /**
@@ -51529,16 +51590,16 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
51529
51590
  export declare interface JsonApiOrganizationOutRelationships {
51530
51591
  /**
51531
51592
  *
51532
- * @type {JsonApiFilterViewOutRelationshipsUser}
51593
+ * @type {JsonApiFilterViewInRelationshipsUser}
51533
51594
  * @memberof JsonApiOrganizationOutRelationships
51534
51595
  */
51535
- bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
51596
+ bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
51536
51597
  /**
51537
51598
  *
51538
- * @type {JsonApiUserDataFilterOutRelationshipsUserGroup}
51599
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
51539
51600
  * @memberof JsonApiOrganizationOutRelationships
51540
51601
  */
51541
- bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
51602
+ bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
51542
51603
  }
51543
51604
 
51544
51605
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -51696,10 +51757,10 @@ export declare interface JsonApiOrganizationSettingIn {
51696
51757
  id: string;
51697
51758
  /**
51698
51759
  *
51699
- * @type {JsonApiOrganizationSettingPatchAttributes}
51760
+ * @type {JsonApiWorkspaceSettingInAttributes}
51700
51761
  * @memberof JsonApiOrganizationSettingIn
51701
51762
  */
51702
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51763
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51703
51764
  }
51704
51765
 
51705
51766
  /**
@@ -51742,10 +51803,10 @@ export declare interface JsonApiOrganizationSettingOut {
51742
51803
  id: string;
51743
51804
  /**
51744
51805
  *
51745
- * @type {JsonApiOrganizationSettingPatchAttributes}
51806
+ * @type {JsonApiWorkspaceSettingInAttributes}
51746
51807
  * @memberof JsonApiOrganizationSettingOut
51747
51808
  */
51748
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51809
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51749
51810
  }
51750
51811
 
51751
51812
  /**
@@ -51820,10 +51881,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
51820
51881
  id: string;
51821
51882
  /**
51822
51883
  *
51823
- * @type {JsonApiOrganizationSettingPatchAttributes}
51884
+ * @type {JsonApiWorkspaceSettingInAttributes}
51824
51885
  * @memberof JsonApiOrganizationSettingOutWithLinks
51825
51886
  */
51826
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51887
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51827
51888
  /**
51828
51889
  *
51829
51890
  * @type {ObjectLinks}
@@ -51858,57 +51919,12 @@ export declare interface JsonApiOrganizationSettingPatch {
51858
51919
  id: string;
51859
51920
  /**
51860
51921
  *
51861
- * @type {JsonApiOrganizationSettingPatchAttributes}
51922
+ * @type {JsonApiWorkspaceSettingInAttributes}
51862
51923
  * @memberof JsonApiOrganizationSettingPatch
51863
51924
  */
51864
- attributes?: JsonApiOrganizationSettingPatchAttributes;
51925
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51865
51926
  }
51866
51927
 
51867
- /**
51868
- *
51869
- * @export
51870
- * @interface JsonApiOrganizationSettingPatchAttributes
51871
- */
51872
- export declare interface JsonApiOrganizationSettingPatchAttributes {
51873
- /**
51874
- * Free-form JSON content. Maximum supported length is 15000 characters.
51875
- * @type {object}
51876
- * @memberof JsonApiOrganizationSettingPatchAttributes
51877
- */
51878
- content?: object;
51879
- /**
51880
- *
51881
- * @type {string}
51882
- * @memberof JsonApiOrganizationSettingPatchAttributes
51883
- */
51884
- type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
51885
- }
51886
-
51887
- export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
51888
- readonly TIMEZONE: "TIMEZONE";
51889
- readonly ACTIVE_THEME: "ACTIVE_THEME";
51890
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
51891
- readonly WHITE_LABELING: "WHITE_LABELING";
51892
- readonly LOCALE: "LOCALE";
51893
- readonly METADATA_LOCALE: "METADATA_LOCALE";
51894
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
51895
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
51896
- readonly WEEK_START: "WEEK_START";
51897
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
51898
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
51899
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
51900
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
51901
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
51902
- readonly ALERT: "ALERT";
51903
- readonly SEPARATORS: "SEPARATORS";
51904
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
51905
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
51906
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
51907
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
51908
- };
51909
-
51910
- export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = typeof JsonApiOrganizationSettingPatchAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
51911
-
51912
51928
  /**
51913
51929
  *
51914
51930
  * @export
@@ -52157,16 +52173,54 @@ export declare interface JsonApiUserDataFilterIn {
52157
52173
  id: string;
52158
52174
  /**
52159
52175
  *
52160
- * @type {JsonApiUserDataFilterOutAttributes}
52176
+ * @type {JsonApiUserDataFilterInAttributes}
52161
52177
  * @memberof JsonApiUserDataFilterIn
52162
52178
  */
52163
- attributes: JsonApiUserDataFilterOutAttributes;
52179
+ attributes: JsonApiUserDataFilterInAttributes;
52164
52180
  /**
52165
52181
  *
52166
- * @type {JsonApiUserDataFilterPatchRelationships}
52182
+ * @type {JsonApiUserDataFilterInRelationships}
52167
52183
  * @memberof JsonApiUserDataFilterIn
52168
52184
  */
52169
- relationships?: JsonApiUserDataFilterPatchRelationships;
52185
+ relationships?: JsonApiUserDataFilterInRelationships;
52186
+ }
52187
+
52188
+ /**
52189
+ *
52190
+ * @export
52191
+ * @interface JsonApiUserDataFilterInAttributes
52192
+ */
52193
+ export declare interface JsonApiUserDataFilterInAttributes {
52194
+ /**
52195
+ *
52196
+ * @type {string}
52197
+ * @memberof JsonApiUserDataFilterInAttributes
52198
+ */
52199
+ title?: string;
52200
+ /**
52201
+ *
52202
+ * @type {string}
52203
+ * @memberof JsonApiUserDataFilterInAttributes
52204
+ */
52205
+ description?: string;
52206
+ /**
52207
+ *
52208
+ * @type {Array<string>}
52209
+ * @memberof JsonApiUserDataFilterInAttributes
52210
+ */
52211
+ tags?: Array<string>;
52212
+ /**
52213
+ *
52214
+ * @type {boolean}
52215
+ * @memberof JsonApiUserDataFilterInAttributes
52216
+ */
52217
+ areRelationsValid?: boolean;
52218
+ /**
52219
+ *
52220
+ * @type {string}
52221
+ * @memberof JsonApiUserDataFilterInAttributes
52222
+ */
52223
+ maql: string;
52170
52224
  }
52171
52225
 
52172
52226
  /**
@@ -52183,6 +52237,40 @@ export declare interface JsonApiUserDataFilterInDocument {
52183
52237
  data: JsonApiUserDataFilterIn;
52184
52238
  }
52185
52239
 
52240
+ /**
52241
+ *
52242
+ * @export
52243
+ * @interface JsonApiUserDataFilterInRelationships
52244
+ */
52245
+ export declare interface JsonApiUserDataFilterInRelationships {
52246
+ /**
52247
+ *
52248
+ * @type {JsonApiFilterViewInRelationshipsUser}
52249
+ * @memberof JsonApiUserDataFilterInRelationships
52250
+ */
52251
+ user?: JsonApiFilterViewInRelationshipsUser;
52252
+ /**
52253
+ *
52254
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
52255
+ * @memberof JsonApiUserDataFilterInRelationships
52256
+ */
52257
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
52258
+ }
52259
+
52260
+ /**
52261
+ *
52262
+ * @export
52263
+ * @interface JsonApiUserDataFilterInRelationshipsUserGroup
52264
+ */
52265
+ export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
52266
+ /**
52267
+ *
52268
+ * @type {JsonApiUserGroupToOneLinkage}
52269
+ * @memberof JsonApiUserDataFilterInRelationshipsUserGroup
52270
+ */
52271
+ data: JsonApiUserGroupToOneLinkage | null;
52272
+ }
52273
+
52186
52274
  export declare const JsonApiUserDataFilterInTypeEnum: {
52187
52275
  readonly USER_DATA_FILTER: "userDataFilter";
52188
52276
  };
@@ -52215,10 +52303,10 @@ export declare interface JsonApiUserDataFilterOut {
52215
52303
  meta?: JsonApiVisualizationObjectOutMeta;
52216
52304
  /**
52217
52305
  *
52218
- * @type {JsonApiUserDataFilterOutAttributes}
52306
+ * @type {JsonApiUserDataFilterInAttributes}
52219
52307
  * @memberof JsonApiUserDataFilterOut
52220
52308
  */
52221
- attributes: JsonApiUserDataFilterOutAttributes;
52309
+ attributes: JsonApiUserDataFilterInAttributes;
52222
52310
  /**
52223
52311
  *
52224
52312
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -52227,44 +52315,6 @@ export declare interface JsonApiUserDataFilterOut {
52227
52315
  relationships?: JsonApiUserDataFilterOutRelationships;
52228
52316
  }
52229
52317
 
52230
- /**
52231
- *
52232
- * @export
52233
- * @interface JsonApiUserDataFilterOutAttributes
52234
- */
52235
- export declare interface JsonApiUserDataFilterOutAttributes {
52236
- /**
52237
- *
52238
- * @type {string}
52239
- * @memberof JsonApiUserDataFilterOutAttributes
52240
- */
52241
- title?: string;
52242
- /**
52243
- *
52244
- * @type {string}
52245
- * @memberof JsonApiUserDataFilterOutAttributes
52246
- */
52247
- description?: string;
52248
- /**
52249
- *
52250
- * @type {Array<string>}
52251
- * @memberof JsonApiUserDataFilterOutAttributes
52252
- */
52253
- tags?: Array<string>;
52254
- /**
52255
- *
52256
- * @type {boolean}
52257
- * @memberof JsonApiUserDataFilterOutAttributes
52258
- */
52259
- areRelationsValid?: boolean;
52260
- /**
52261
- *
52262
- * @type {string}
52263
- * @memberof JsonApiUserDataFilterOutAttributes
52264
- */
52265
- maql: string;
52266
- }
52267
-
52268
52318
  /**
52269
52319
  *
52270
52320
  * @export
@@ -52337,16 +52387,16 @@ export declare interface JsonApiUserDataFilterOutList {
52337
52387
  export declare interface JsonApiUserDataFilterOutRelationships {
52338
52388
  /**
52339
52389
  *
52340
- * @type {JsonApiFilterViewOutRelationshipsUser}
52390
+ * @type {JsonApiFilterViewInRelationshipsUser}
52341
52391
  * @memberof JsonApiUserDataFilterOutRelationships
52342
52392
  */
52343
- user?: JsonApiFilterViewOutRelationshipsUser;
52393
+ user?: JsonApiFilterViewInRelationshipsUser;
52344
52394
  /**
52345
52395
  *
52346
- * @type {JsonApiUserDataFilterOutRelationshipsUserGroup}
52396
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
52347
52397
  * @memberof JsonApiUserDataFilterOutRelationships
52348
52398
  */
52349
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
52399
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
52350
52400
  /**
52351
52401
  *
52352
52402
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -52379,20 +52429,6 @@ export declare interface JsonApiUserDataFilterOutRelationships {
52379
52429
  datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
52380
52430
  }
52381
52431
 
52382
- /**
52383
- *
52384
- * @export
52385
- * @interface JsonApiUserDataFilterOutRelationshipsUserGroup
52386
- */
52387
- export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
52388
- /**
52389
- *
52390
- * @type {JsonApiUserGroupToOneLinkage}
52391
- * @memberof JsonApiUserDataFilterOutRelationshipsUserGroup
52392
- */
52393
- data: JsonApiUserGroupToOneLinkage | null;
52394
- }
52395
-
52396
52432
  export declare const JsonApiUserDataFilterOutTypeEnum: {
52397
52433
  readonly USER_DATA_FILTER: "userDataFilter";
52398
52434
  };
@@ -52425,10 +52461,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
52425
52461
  meta?: JsonApiVisualizationObjectOutMeta;
52426
52462
  /**
52427
52463
  *
52428
- * @type {JsonApiUserDataFilterOutAttributes}
52464
+ * @type {JsonApiUserDataFilterInAttributes}
52429
52465
  * @memberof JsonApiUserDataFilterOutWithLinks
52430
52466
  */
52431
- attributes: JsonApiUserDataFilterOutAttributes;
52467
+ attributes: JsonApiUserDataFilterInAttributes;
52432
52468
  /**
52433
52469
  *
52434
52470
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -52475,10 +52511,10 @@ export declare interface JsonApiUserDataFilterPatch {
52475
52511
  attributes: JsonApiUserDataFilterPatchAttributes;
52476
52512
  /**
52477
52513
  *
52478
- * @type {JsonApiUserDataFilterPatchRelationships}
52514
+ * @type {JsonApiUserDataFilterInRelationships}
52479
52515
  * @memberof JsonApiUserDataFilterPatch
52480
52516
  */
52481
- relationships?: JsonApiUserDataFilterPatchRelationships;
52517
+ relationships?: JsonApiUserDataFilterInRelationships;
52482
52518
  }
52483
52519
 
52484
52520
  /**
@@ -52533,26 +52569,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
52533
52569
  data: JsonApiUserDataFilterPatch;
52534
52570
  }
52535
52571
 
52536
- /**
52537
- *
52538
- * @export
52539
- * @interface JsonApiUserDataFilterPatchRelationships
52540
- */
52541
- export declare interface JsonApiUserDataFilterPatchRelationships {
52542
- /**
52543
- *
52544
- * @type {JsonApiFilterViewOutRelationshipsUser}
52545
- * @memberof JsonApiUserDataFilterPatchRelationships
52546
- */
52547
- user?: JsonApiFilterViewOutRelationshipsUser;
52548
- /**
52549
- *
52550
- * @type {JsonApiUserDataFilterOutRelationshipsUserGroup}
52551
- * @memberof JsonApiUserDataFilterPatchRelationships
52552
- */
52553
- userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
52554
- }
52555
-
52556
52572
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
52557
52573
  readonly USER_DATA_FILTER: "userDataFilter";
52558
52574
  };
@@ -52579,16 +52595,16 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
52579
52595
  id?: string;
52580
52596
  /**
52581
52597
  *
52582
- * @type {JsonApiUserDataFilterOutAttributes}
52598
+ * @type {JsonApiUserDataFilterInAttributes}
52583
52599
  * @memberof JsonApiUserDataFilterPostOptionalId
52584
52600
  */
52585
- attributes: JsonApiUserDataFilterOutAttributes;
52601
+ attributes: JsonApiUserDataFilterInAttributes;
52586
52602
  /**
52587
52603
  *
52588
- * @type {JsonApiUserDataFilterPatchRelationships}
52604
+ * @type {JsonApiUserDataFilterInRelationships}
52589
52605
  * @memberof JsonApiUserDataFilterPostOptionalId
52590
52606
  */
52591
- relationships?: JsonApiUserDataFilterPatchRelationships;
52607
+ relationships?: JsonApiUserDataFilterInRelationships;
52592
52608
  }
52593
52609
 
52594
52610
  /**
@@ -52631,16 +52647,16 @@ export declare interface JsonApiUserGroupIn {
52631
52647
  id: string;
52632
52648
  /**
52633
52649
  *
52634
- * @type {JsonApiUserGroupPatchAttributes}
52650
+ * @type {JsonApiUserGroupOutAttributes}
52635
52651
  * @memberof JsonApiUserGroupIn
52636
52652
  */
52637
- attributes?: JsonApiUserGroupPatchAttributes;
52653
+ attributes?: JsonApiUserGroupOutAttributes;
52638
52654
  /**
52639
52655
  *
52640
- * @type {JsonApiUserGroupPatchRelationships}
52656
+ * @type {JsonApiUserGroupOutRelationships}
52641
52657
  * @memberof JsonApiUserGroupIn
52642
52658
  */
52643
- relationships?: JsonApiUserGroupPatchRelationships;
52659
+ relationships?: JsonApiUserGroupOutRelationships;
52644
52660
  }
52645
52661
 
52646
52662
  /**
@@ -52709,16 +52725,30 @@ export declare interface JsonApiUserGroupOut {
52709
52725
  id: string;
52710
52726
  /**
52711
52727
  *
52712
- * @type {JsonApiUserGroupPatchAttributes}
52728
+ * @type {JsonApiUserGroupOutAttributes}
52713
52729
  * @memberof JsonApiUserGroupOut
52714
52730
  */
52715
- attributes?: JsonApiUserGroupPatchAttributes;
52731
+ attributes?: JsonApiUserGroupOutAttributes;
52716
52732
  /**
52717
52733
  *
52718
- * @type {JsonApiUserGroupPatchRelationships}
52734
+ * @type {JsonApiUserGroupOutRelationships}
52719
52735
  * @memberof JsonApiUserGroupOut
52720
52736
  */
52721
- relationships?: JsonApiUserGroupPatchRelationships;
52737
+ relationships?: JsonApiUserGroupOutRelationships;
52738
+ }
52739
+
52740
+ /**
52741
+ *
52742
+ * @export
52743
+ * @interface JsonApiUserGroupOutAttributes
52744
+ */
52745
+ export declare interface JsonApiUserGroupOutAttributes {
52746
+ /**
52747
+ *
52748
+ * @type {string}
52749
+ * @memberof JsonApiUserGroupOutAttributes
52750
+ */
52751
+ name?: string;
52722
52752
  }
52723
52753
 
52724
52754
  /**
@@ -52779,6 +52809,20 @@ export declare interface JsonApiUserGroupOutList {
52779
52809
  included?: Array<JsonApiUserGroupOutWithLinks>;
52780
52810
  }
52781
52811
 
52812
+ /**
52813
+ *
52814
+ * @export
52815
+ * @interface JsonApiUserGroupOutRelationships
52816
+ */
52817
+ export declare interface JsonApiUserGroupOutRelationships {
52818
+ /**
52819
+ *
52820
+ * @type {JsonApiUserOutRelationshipsUserGroups}
52821
+ * @memberof JsonApiUserGroupOutRelationships
52822
+ */
52823
+ parents?: JsonApiUserOutRelationshipsUserGroups;
52824
+ }
52825
+
52782
52826
  export declare const JsonApiUserGroupOutTypeEnum: {
52783
52827
  readonly USER_GROUP: "userGroup";
52784
52828
  };
@@ -52805,16 +52849,16 @@ export declare interface JsonApiUserGroupOutWithLinks {
52805
52849
  id: string;
52806
52850
  /**
52807
52851
  *
52808
- * @type {JsonApiUserGroupPatchAttributes}
52852
+ * @type {JsonApiUserGroupOutAttributes}
52809
52853
  * @memberof JsonApiUserGroupOutWithLinks
52810
52854
  */
52811
- attributes?: JsonApiUserGroupPatchAttributes;
52855
+ attributes?: JsonApiUserGroupOutAttributes;
52812
52856
  /**
52813
52857
  *
52814
- * @type {JsonApiUserGroupPatchRelationships}
52858
+ * @type {JsonApiUserGroupOutRelationships}
52815
52859
  * @memberof JsonApiUserGroupOutWithLinks
52816
52860
  */
52817
- relationships?: JsonApiUserGroupPatchRelationships;
52861
+ relationships?: JsonApiUserGroupOutRelationships;
52818
52862
  /**
52819
52863
  *
52820
52864
  * @type {ObjectLinks}
@@ -52849,30 +52893,16 @@ export declare interface JsonApiUserGroupPatch {
52849
52893
  id: string;
52850
52894
  /**
52851
52895
  *
52852
- * @type {JsonApiUserGroupPatchAttributes}
52896
+ * @type {JsonApiUserGroupOutAttributes}
52853
52897
  * @memberof JsonApiUserGroupPatch
52854
52898
  */
52855
- attributes?: JsonApiUserGroupPatchAttributes;
52899
+ attributes?: JsonApiUserGroupOutAttributes;
52856
52900
  /**
52857
52901
  *
52858
- * @type {JsonApiUserGroupPatchRelationships}
52902
+ * @type {JsonApiUserGroupOutRelationships}
52859
52903
  * @memberof JsonApiUserGroupPatch
52860
52904
  */
52861
- relationships?: JsonApiUserGroupPatchRelationships;
52862
- }
52863
-
52864
- /**
52865
- *
52866
- * @export
52867
- * @interface JsonApiUserGroupPatchAttributes
52868
- */
52869
- export declare interface JsonApiUserGroupPatchAttributes {
52870
- /**
52871
- *
52872
- * @type {string}
52873
- * @memberof JsonApiUserGroupPatchAttributes
52874
- */
52875
- name?: string;
52905
+ relationships?: JsonApiUserGroupOutRelationships;
52876
52906
  }
52877
52907
 
52878
52908
  /**
@@ -52889,34 +52919,6 @@ export declare interface JsonApiUserGroupPatchDocument {
52889
52919
  data: JsonApiUserGroupPatch;
52890
52920
  }
52891
52921
 
52892
- /**
52893
- *
52894
- * @export
52895
- * @interface JsonApiUserGroupPatchRelationships
52896
- */
52897
- export declare interface JsonApiUserGroupPatchRelationships {
52898
- /**
52899
- *
52900
- * @type {JsonApiUserGroupPatchRelationshipsParents}
52901
- * @memberof JsonApiUserGroupPatchRelationships
52902
- */
52903
- parents?: JsonApiUserGroupPatchRelationshipsParents;
52904
- }
52905
-
52906
- /**
52907
- *
52908
- * @export
52909
- * @interface JsonApiUserGroupPatchRelationshipsParents
52910
- */
52911
- export declare interface JsonApiUserGroupPatchRelationshipsParents {
52912
- /**
52913
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
52914
- * @type {Array<JsonApiUserGroupLinkage>}
52915
- * @memberof JsonApiUserGroupPatchRelationshipsParents
52916
- */
52917
- data: Array<JsonApiUserGroupLinkage>;
52918
- }
52919
-
52920
52922
  export declare const JsonApiUserGroupPatchTypeEnum: {
52921
52923
  readonly USER_GROUP: "userGroup";
52922
52924
  };
@@ -53125,16 +53127,16 @@ export declare interface JsonApiUserIn {
53125
53127
  id: string;
53126
53128
  /**
53127
53129
  *
53128
- * @type {JsonApiUserPatchAttributes}
53130
+ * @type {JsonApiUserOutAttributes}
53129
53131
  * @memberof JsonApiUserIn
53130
53132
  */
53131
- attributes?: JsonApiUserPatchAttributes;
53133
+ attributes?: JsonApiUserOutAttributes;
53132
53134
  /**
53133
53135
  *
53134
- * @type {JsonApiUserPatchRelationships}
53136
+ * @type {JsonApiUserOutRelationships}
53135
53137
  * @memberof JsonApiUserIn
53136
53138
  */
53137
- relationships?: JsonApiUserPatchRelationships;
53139
+ relationships?: JsonApiUserOutRelationships;
53138
53140
  }
53139
53141
 
53140
53142
  /**
@@ -53203,16 +53205,48 @@ export declare interface JsonApiUserOut {
53203
53205
  id: string;
53204
53206
  /**
53205
53207
  *
53206
- * @type {JsonApiUserPatchAttributes}
53208
+ * @type {JsonApiUserOutAttributes}
53207
53209
  * @memberof JsonApiUserOut
53208
53210
  */
53209
- attributes?: JsonApiUserPatchAttributes;
53211
+ attributes?: JsonApiUserOutAttributes;
53210
53212
  /**
53211
53213
  *
53212
- * @type {JsonApiUserPatchRelationships}
53214
+ * @type {JsonApiUserOutRelationships}
53213
53215
  * @memberof JsonApiUserOut
53214
53216
  */
53215
- relationships?: JsonApiUserPatchRelationships;
53217
+ relationships?: JsonApiUserOutRelationships;
53218
+ }
53219
+
53220
+ /**
53221
+ *
53222
+ * @export
53223
+ * @interface JsonApiUserOutAttributes
53224
+ */
53225
+ export declare interface JsonApiUserOutAttributes {
53226
+ /**
53227
+ *
53228
+ * @type {string}
53229
+ * @memberof JsonApiUserOutAttributes
53230
+ */
53231
+ authenticationId?: string;
53232
+ /**
53233
+ *
53234
+ * @type {string}
53235
+ * @memberof JsonApiUserOutAttributes
53236
+ */
53237
+ firstname?: string;
53238
+ /**
53239
+ *
53240
+ * @type {string}
53241
+ * @memberof JsonApiUserOutAttributes
53242
+ */
53243
+ lastname?: string;
53244
+ /**
53245
+ *
53246
+ * @type {string}
53247
+ * @memberof JsonApiUserOutAttributes
53248
+ */
53249
+ email?: string;
53216
53250
  }
53217
53251
 
53218
53252
  /**
@@ -53273,6 +53307,34 @@ export declare interface JsonApiUserOutList {
53273
53307
  included?: Array<JsonApiUserGroupOutWithLinks>;
53274
53308
  }
53275
53309
 
53310
+ /**
53311
+ *
53312
+ * @export
53313
+ * @interface JsonApiUserOutRelationships
53314
+ */
53315
+ export declare interface JsonApiUserOutRelationships {
53316
+ /**
53317
+ *
53318
+ * @type {JsonApiUserOutRelationshipsUserGroups}
53319
+ * @memberof JsonApiUserOutRelationships
53320
+ */
53321
+ userGroups?: JsonApiUserOutRelationshipsUserGroups;
53322
+ }
53323
+
53324
+ /**
53325
+ *
53326
+ * @export
53327
+ * @interface JsonApiUserOutRelationshipsUserGroups
53328
+ */
53329
+ export declare interface JsonApiUserOutRelationshipsUserGroups {
53330
+ /**
53331
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
53332
+ * @type {Array<JsonApiUserGroupLinkage>}
53333
+ * @memberof JsonApiUserOutRelationshipsUserGroups
53334
+ */
53335
+ data: Array<JsonApiUserGroupLinkage>;
53336
+ }
53337
+
53276
53338
  export declare const JsonApiUserOutTypeEnum: {
53277
53339
  readonly USER: "user";
53278
53340
  };
@@ -53299,16 +53361,16 @@ export declare interface JsonApiUserOutWithLinks {
53299
53361
  id: string;
53300
53362
  /**
53301
53363
  *
53302
- * @type {JsonApiUserPatchAttributes}
53364
+ * @type {JsonApiUserOutAttributes}
53303
53365
  * @memberof JsonApiUserOutWithLinks
53304
53366
  */
53305
- attributes?: JsonApiUserPatchAttributes;
53367
+ attributes?: JsonApiUserOutAttributes;
53306
53368
  /**
53307
53369
  *
53308
- * @type {JsonApiUserPatchRelationships}
53370
+ * @type {JsonApiUserOutRelationships}
53309
53371
  * @memberof JsonApiUserOutWithLinks
53310
53372
  */
53311
- relationships?: JsonApiUserPatchRelationships;
53373
+ relationships?: JsonApiUserOutRelationships;
53312
53374
  /**
53313
53375
  *
53314
53376
  * @type {ObjectLinks}
@@ -53343,48 +53405,16 @@ export declare interface JsonApiUserPatch {
53343
53405
  id: string;
53344
53406
  /**
53345
53407
  *
53346
- * @type {JsonApiUserPatchAttributes}
53408
+ * @type {JsonApiUserOutAttributes}
53347
53409
  * @memberof JsonApiUserPatch
53348
53410
  */
53349
- attributes?: JsonApiUserPatchAttributes;
53411
+ attributes?: JsonApiUserOutAttributes;
53350
53412
  /**
53351
53413
  *
53352
- * @type {JsonApiUserPatchRelationships}
53414
+ * @type {JsonApiUserOutRelationships}
53353
53415
  * @memberof JsonApiUserPatch
53354
53416
  */
53355
- relationships?: JsonApiUserPatchRelationships;
53356
- }
53357
-
53358
- /**
53359
- *
53360
- * @export
53361
- * @interface JsonApiUserPatchAttributes
53362
- */
53363
- export declare interface JsonApiUserPatchAttributes {
53364
- /**
53365
- *
53366
- * @type {string}
53367
- * @memberof JsonApiUserPatchAttributes
53368
- */
53369
- authenticationId?: string;
53370
- /**
53371
- *
53372
- * @type {string}
53373
- * @memberof JsonApiUserPatchAttributes
53374
- */
53375
- firstname?: string;
53376
- /**
53377
- *
53378
- * @type {string}
53379
- * @memberof JsonApiUserPatchAttributes
53380
- */
53381
- lastname?: string;
53382
- /**
53383
- *
53384
- * @type {string}
53385
- * @memberof JsonApiUserPatchAttributes
53386
- */
53387
- email?: string;
53417
+ relationships?: JsonApiUserOutRelationships;
53388
53418
  }
53389
53419
 
53390
53420
  /**
@@ -53401,20 +53431,6 @@ export declare interface JsonApiUserPatchDocument {
53401
53431
  data: JsonApiUserPatch;
53402
53432
  }
53403
53433
 
53404
- /**
53405
- *
53406
- * @export
53407
- * @interface JsonApiUserPatchRelationships
53408
- */
53409
- export declare interface JsonApiUserPatchRelationships {
53410
- /**
53411
- *
53412
- * @type {JsonApiUserGroupPatchRelationshipsParents}
53413
- * @memberof JsonApiUserPatchRelationships
53414
- */
53415
- userGroups?: JsonApiUserGroupPatchRelationshipsParents;
53416
- }
53417
-
53418
53434
  export declare const JsonApiUserPatchTypeEnum: {
53419
53435
  readonly USER: "user";
53420
53436
  };
@@ -53441,10 +53457,10 @@ export declare interface JsonApiUserSettingIn {
53441
53457
  id: string;
53442
53458
  /**
53443
53459
  *
53444
- * @type {JsonApiOrganizationSettingPatchAttributes}
53460
+ * @type {JsonApiWorkspaceSettingInAttributes}
53445
53461
  * @memberof JsonApiUserSettingIn
53446
53462
  */
53447
- attributes?: JsonApiOrganizationSettingPatchAttributes;
53463
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53448
53464
  }
53449
53465
 
53450
53466
  /**
@@ -53487,10 +53503,10 @@ export declare interface JsonApiUserSettingOut {
53487
53503
  id: string;
53488
53504
  /**
53489
53505
  *
53490
- * @type {JsonApiOrganizationSettingPatchAttributes}
53506
+ * @type {JsonApiWorkspaceSettingInAttributes}
53491
53507
  * @memberof JsonApiUserSettingOut
53492
53508
  */
53493
- attributes?: JsonApiOrganizationSettingPatchAttributes;
53509
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53494
53510
  }
53495
53511
 
53496
53512
  /**
@@ -53565,10 +53581,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
53565
53581
  id: string;
53566
53582
  /**
53567
53583
  *
53568
- * @type {JsonApiOrganizationSettingPatchAttributes}
53584
+ * @type {JsonApiWorkspaceSettingInAttributes}
53569
53585
  * @memberof JsonApiUserSettingOutWithLinks
53570
53586
  */
53571
- attributes?: JsonApiOrganizationSettingPatchAttributes;
53587
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53572
53588
  /**
53573
53589
  *
53574
53590
  * @type {ObjectLinks}
@@ -53610,10 +53626,10 @@ export declare interface JsonApiVisualizationObjectIn {
53610
53626
  id: string;
53611
53627
  /**
53612
53628
  *
53613
- * @type {JsonApiFilterContextOutAttributes}
53629
+ * @type {JsonApiAnalyticalDashboardInAttributes}
53614
53630
  * @memberof JsonApiVisualizationObjectIn
53615
53631
  */
53616
- attributes: JsonApiFilterContextOutAttributes;
53632
+ attributes: JsonApiAnalyticalDashboardInAttributes;
53617
53633
  }
53618
53634
 
53619
53635
  /**
@@ -54105,10 +54121,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
54105
54121
  id?: string;
54106
54122
  /**
54107
54123
  *
54108
- * @type {JsonApiFilterContextOutAttributes}
54124
+ * @type {JsonApiAnalyticalDashboardInAttributes}
54109
54125
  * @memberof JsonApiVisualizationObjectPostOptionalId
54110
54126
  */
54111
- attributes: JsonApiFilterContextOutAttributes;
54127
+ attributes: JsonApiAnalyticalDashboardInAttributes;
54112
54128
  }
54113
54129
 
54114
54130
  /**
@@ -54494,16 +54510,42 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
54494
54510
  id: string;
54495
54511
  /**
54496
54512
  *
54497
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
54513
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
54498
54514
  * @memberof JsonApiWorkspaceDataFilterSettingIn
54499
54515
  */
54500
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
54516
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
54501
54517
  /**
54502
54518
  *
54503
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
54519
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
54504
54520
  * @memberof JsonApiWorkspaceDataFilterSettingIn
54505
54521
  */
54506
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
54522
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
54523
+ }
54524
+
54525
+ /**
54526
+ *
54527
+ * @export
54528
+ * @interface JsonApiWorkspaceDataFilterSettingInAttributes
54529
+ */
54530
+ export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
54531
+ /**
54532
+ *
54533
+ * @type {string}
54534
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
54535
+ */
54536
+ title?: string;
54537
+ /**
54538
+ *
54539
+ * @type {string}
54540
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
54541
+ */
54542
+ description?: string;
54543
+ /**
54544
+ *
54545
+ * @type {Array<string>}
54546
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
54547
+ */
54548
+ filterValues?: Array<string>;
54507
54549
  }
54508
54550
 
54509
54551
  /**
@@ -54520,6 +54562,34 @@ export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
54520
54562
  data: JsonApiWorkspaceDataFilterSettingIn;
54521
54563
  }
54522
54564
 
54565
+ /**
54566
+ *
54567
+ * @export
54568
+ * @interface JsonApiWorkspaceDataFilterSettingInRelationships
54569
+ */
54570
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
54571
+ /**
54572
+ *
54573
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
54574
+ * @memberof JsonApiWorkspaceDataFilterSettingInRelationships
54575
+ */
54576
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
54577
+ }
54578
+
54579
+ /**
54580
+ *
54581
+ * @export
54582
+ * @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
54583
+ */
54584
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
54585
+ /**
54586
+ *
54587
+ * @type {JsonApiWorkspaceDataFilterToOneLinkage}
54588
+ * @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
54589
+ */
54590
+ data: JsonApiWorkspaceDataFilterToOneLinkage | null;
54591
+ }
54592
+
54523
54593
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
54524
54594
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
54525
54595
  };
@@ -54578,42 +54648,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
54578
54648
  meta?: JsonApiVisualizationObjectOutMeta;
54579
54649
  /**
54580
54650
  *
54581
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
54651
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
54582
54652
  * @memberof JsonApiWorkspaceDataFilterSettingOut
54583
54653
  */
54584
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
54654
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
54585
54655
  /**
54586
54656
  *
54587
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
54657
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
54588
54658
  * @memberof JsonApiWorkspaceDataFilterSettingOut
54589
54659
  */
54590
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
54591
- }
54592
-
54593
- /**
54594
- *
54595
- * @export
54596
- * @interface JsonApiWorkspaceDataFilterSettingOutAttributes
54597
- */
54598
- export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
54599
- /**
54600
- *
54601
- * @type {string}
54602
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
54603
- */
54604
- title?: string;
54605
- /**
54606
- *
54607
- * @type {string}
54608
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
54609
- */
54610
- description?: string;
54611
- /**
54612
- *
54613
- * @type {Array<string>}
54614
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
54615
- */
54616
- filterValues?: Array<string>;
54660
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
54617
54661
  }
54618
54662
 
54619
54663
  /**
@@ -54674,34 +54718,6 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
54674
54718
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
54675
54719
  }
54676
54720
 
54677
- /**
54678
- *
54679
- * @export
54680
- * @interface JsonApiWorkspaceDataFilterSettingOutRelationships
54681
- */
54682
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
54683
- /**
54684
- *
54685
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
54686
- * @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
54687
- */
54688
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
54689
- }
54690
-
54691
- /**
54692
- *
54693
- * @export
54694
- * @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
54695
- */
54696
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
54697
- /**
54698
- *
54699
- * @type {JsonApiWorkspaceDataFilterToOneLinkage}
54700
- * @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
54701
- */
54702
- data: JsonApiWorkspaceDataFilterToOneLinkage | null;
54703
- }
54704
-
54705
54721
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
54706
54722
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
54707
54723
  };
@@ -54734,16 +54750,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
54734
54750
  meta?: JsonApiVisualizationObjectOutMeta;
54735
54751
  /**
54736
54752
  *
54737
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
54753
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
54738
54754
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
54739
54755
  */
54740
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
54756
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
54741
54757
  /**
54742
54758
  *
54743
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
54759
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
54744
54760
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
54745
54761
  */
54746
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
54762
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
54747
54763
  /**
54748
54764
  *
54749
54765
  * @type {ObjectLinks}
@@ -54778,16 +54794,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
54778
54794
  id: string;
54779
54795
  /**
54780
54796
  *
54781
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
54797
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
54782
54798
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
54783
54799
  */
54784
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
54800
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
54785
54801
  /**
54786
54802
  *
54787
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
54803
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
54788
54804
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
54789
54805
  */
54790
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
54806
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
54791
54807
  }
54792
54808
 
54793
54809
  /**
@@ -54837,16 +54853,16 @@ export declare interface JsonApiWorkspaceIn {
54837
54853
  id: string;
54838
54854
  /**
54839
54855
  *
54840
- * @type {JsonApiWorkspacePatchAttributes}
54856
+ * @type {JsonApiWorkspaceOutAttributes}
54841
54857
  * @memberof JsonApiWorkspaceIn
54842
54858
  */
54843
- attributes?: JsonApiWorkspacePatchAttributes;
54859
+ attributes?: JsonApiWorkspaceOutAttributes;
54844
54860
  /**
54845
54861
  *
54846
- * @type {JsonApiWorkspacePatchRelationships}
54862
+ * @type {JsonApiWorkspaceOutRelationships}
54847
54863
  * @memberof JsonApiWorkspaceIn
54848
54864
  */
54849
- relationships?: JsonApiWorkspacePatchRelationships;
54865
+ relationships?: JsonApiWorkspaceOutRelationships;
54850
54866
  }
54851
54867
 
54852
54868
  /**
@@ -54921,16 +54937,87 @@ export declare interface JsonApiWorkspaceOut {
54921
54937
  meta?: JsonApiWorkspaceOutMeta;
54922
54938
  /**
54923
54939
  *
54924
- * @type {JsonApiWorkspacePatchAttributes}
54940
+ * @type {JsonApiWorkspaceOutAttributes}
54925
54941
  * @memberof JsonApiWorkspaceOut
54926
54942
  */
54927
- attributes?: JsonApiWorkspacePatchAttributes;
54943
+ attributes?: JsonApiWorkspaceOutAttributes;
54928
54944
  /**
54929
54945
  *
54930
- * @type {JsonApiWorkspacePatchRelationships}
54946
+ * @type {JsonApiWorkspaceOutRelationships}
54931
54947
  * @memberof JsonApiWorkspaceOut
54932
54948
  */
54933
- relationships?: JsonApiWorkspacePatchRelationships;
54949
+ relationships?: JsonApiWorkspaceOutRelationships;
54950
+ }
54951
+
54952
+ /**
54953
+ *
54954
+ * @export
54955
+ * @interface JsonApiWorkspaceOutAttributes
54956
+ */
54957
+ export declare interface JsonApiWorkspaceOutAttributes {
54958
+ /**
54959
+ *
54960
+ * @type {string}
54961
+ * @memberof JsonApiWorkspaceOutAttributes
54962
+ */
54963
+ name?: string | null;
54964
+ /**
54965
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
54966
+ * @type {string}
54967
+ * @memberof JsonApiWorkspaceOutAttributes
54968
+ * @deprecated
54969
+ */
54970
+ earlyAccess?: string | null;
54971
+ /**
54972
+ * The early access feature identifiers. They are used to enable experimental features.
54973
+ * @type {Array<string>}
54974
+ * @memberof JsonApiWorkspaceOutAttributes
54975
+ */
54976
+ earlyAccessValues?: Array<string> | null;
54977
+ /**
54978
+ *
54979
+ * @type {string}
54980
+ * @memberof JsonApiWorkspaceOutAttributes
54981
+ */
54982
+ description?: string | null;
54983
+ /**
54984
+ * Custom prefix of entity identifiers in workspace
54985
+ * @type {string}
54986
+ * @memberof JsonApiWorkspaceOutAttributes
54987
+ */
54988
+ prefix?: string | null;
54989
+ /**
54990
+ *
54991
+ * @type {number}
54992
+ * @memberof JsonApiWorkspaceOutAttributes
54993
+ */
54994
+ cacheExtraLimit?: number;
54995
+ /**
54996
+ *
54997
+ * @type {JsonApiWorkspaceOutAttributesDataSource}
54998
+ * @memberof JsonApiWorkspaceOutAttributes
54999
+ */
55000
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
55001
+ }
55002
+
55003
+ /**
55004
+ * 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.
55005
+ * @export
55006
+ * @interface JsonApiWorkspaceOutAttributesDataSource
55007
+ */
55008
+ export declare interface JsonApiWorkspaceOutAttributesDataSource {
55009
+ /**
55010
+ * The ID of the used data source.
55011
+ * @type {string}
55012
+ * @memberof JsonApiWorkspaceOutAttributesDataSource
55013
+ */
55014
+ id: string;
55015
+ /**
55016
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
55017
+ * @type {Array<string>}
55018
+ * @memberof JsonApiWorkspaceOutAttributesDataSource
55019
+ */
55020
+ schemaPath?: Array<string>;
54934
55021
  }
54935
55022
 
54936
55023
  /**
@@ -55084,12 +55171,41 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
55084
55171
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
55085
55172
  readonly EXPORT_PDF: "EXPORT_PDF";
55086
55173
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
55174
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
55087
55175
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
55088
55176
  readonly VIEW: "VIEW";
55089
55177
  };
55090
55178
 
55091
55179
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = typeof JsonApiWorkspaceOutMetaPermissionsEnum[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
55092
55180
 
55181
+ /**
55182
+ *
55183
+ * @export
55184
+ * @interface JsonApiWorkspaceOutRelationships
55185
+ */
55186
+ export declare interface JsonApiWorkspaceOutRelationships {
55187
+ /**
55188
+ *
55189
+ * @type {JsonApiWorkspaceOutRelationshipsParent}
55190
+ * @memberof JsonApiWorkspaceOutRelationships
55191
+ */
55192
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
55193
+ }
55194
+
55195
+ /**
55196
+ *
55197
+ * @export
55198
+ * @interface JsonApiWorkspaceOutRelationshipsParent
55199
+ */
55200
+ export declare interface JsonApiWorkspaceOutRelationshipsParent {
55201
+ /**
55202
+ *
55203
+ * @type {JsonApiWorkspaceToOneLinkage}
55204
+ * @memberof JsonApiWorkspaceOutRelationshipsParent
55205
+ */
55206
+ data: JsonApiWorkspaceToOneLinkage | null;
55207
+ }
55208
+
55093
55209
  export declare const JsonApiWorkspaceOutTypeEnum: {
55094
55210
  readonly WORKSPACE: "workspace";
55095
55211
  };
@@ -55122,16 +55238,16 @@ export declare interface JsonApiWorkspaceOutWithLinks {
55122
55238
  meta?: JsonApiWorkspaceOutMeta;
55123
55239
  /**
55124
55240
  *
55125
- * @type {JsonApiWorkspacePatchAttributes}
55241
+ * @type {JsonApiWorkspaceOutAttributes}
55126
55242
  * @memberof JsonApiWorkspaceOutWithLinks
55127
55243
  */
55128
- attributes?: JsonApiWorkspacePatchAttributes;
55244
+ attributes?: JsonApiWorkspaceOutAttributes;
55129
55245
  /**
55130
55246
  *
55131
- * @type {JsonApiWorkspacePatchRelationships}
55247
+ * @type {JsonApiWorkspaceOutRelationships}
55132
55248
  * @memberof JsonApiWorkspaceOutWithLinks
55133
55249
  */
55134
- relationships?: JsonApiWorkspacePatchRelationships;
55250
+ relationships?: JsonApiWorkspaceOutRelationships;
55135
55251
  /**
55136
55252
  *
55137
55253
  * @type {ObjectLinks}
@@ -55166,87 +55282,16 @@ export declare interface JsonApiWorkspacePatch {
55166
55282
  id: string;
55167
55283
  /**
55168
55284
  *
55169
- * @type {JsonApiWorkspacePatchAttributes}
55285
+ * @type {JsonApiWorkspaceOutAttributes}
55170
55286
  * @memberof JsonApiWorkspacePatch
55171
55287
  */
55172
- attributes?: JsonApiWorkspacePatchAttributes;
55288
+ attributes?: JsonApiWorkspaceOutAttributes;
55173
55289
  /**
55174
55290
  *
55175
- * @type {JsonApiWorkspacePatchRelationships}
55291
+ * @type {JsonApiWorkspaceOutRelationships}
55176
55292
  * @memberof JsonApiWorkspacePatch
55177
55293
  */
55178
- relationships?: JsonApiWorkspacePatchRelationships;
55179
- }
55180
-
55181
- /**
55182
- *
55183
- * @export
55184
- * @interface JsonApiWorkspacePatchAttributes
55185
- */
55186
- export declare interface JsonApiWorkspacePatchAttributes {
55187
- /**
55188
- *
55189
- * @type {string}
55190
- * @memberof JsonApiWorkspacePatchAttributes
55191
- */
55192
- name?: string | null;
55193
- /**
55194
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
55195
- * @type {string}
55196
- * @memberof JsonApiWorkspacePatchAttributes
55197
- * @deprecated
55198
- */
55199
- earlyAccess?: string | null;
55200
- /**
55201
- * The early access feature identifiers. They are used to enable experimental features.
55202
- * @type {Array<string>}
55203
- * @memberof JsonApiWorkspacePatchAttributes
55204
- */
55205
- earlyAccessValues?: Array<string> | null;
55206
- /**
55207
- *
55208
- * @type {string}
55209
- * @memberof JsonApiWorkspacePatchAttributes
55210
- */
55211
- description?: string | null;
55212
- /**
55213
- * Custom prefix of entity identifiers in workspace
55214
- * @type {string}
55215
- * @memberof JsonApiWorkspacePatchAttributes
55216
- */
55217
- prefix?: string | null;
55218
- /**
55219
- *
55220
- * @type {number}
55221
- * @memberof JsonApiWorkspacePatchAttributes
55222
- */
55223
- cacheExtraLimit?: number;
55224
- /**
55225
- *
55226
- * @type {JsonApiWorkspacePatchAttributesDataSource}
55227
- * @memberof JsonApiWorkspacePatchAttributes
55228
- */
55229
- dataSource?: JsonApiWorkspacePatchAttributesDataSource;
55230
- }
55231
-
55232
- /**
55233
- * 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.
55234
- * @export
55235
- * @interface JsonApiWorkspacePatchAttributesDataSource
55236
- */
55237
- export declare interface JsonApiWorkspacePatchAttributesDataSource {
55238
- /**
55239
- * The ID of the used data source.
55240
- * @type {string}
55241
- * @memberof JsonApiWorkspacePatchAttributesDataSource
55242
- */
55243
- id: string;
55244
- /**
55245
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
55246
- * @type {Array<string>}
55247
- * @memberof JsonApiWorkspacePatchAttributesDataSource
55248
- */
55249
- schemaPath?: Array<string>;
55294
+ relationships?: JsonApiWorkspaceOutRelationships;
55250
55295
  }
55251
55296
 
55252
55297
  /**
@@ -55263,34 +55308,6 @@ export declare interface JsonApiWorkspacePatchDocument {
55263
55308
  data: JsonApiWorkspacePatch;
55264
55309
  }
55265
55310
 
55266
- /**
55267
- *
55268
- * @export
55269
- * @interface JsonApiWorkspacePatchRelationships
55270
- */
55271
- export declare interface JsonApiWorkspacePatchRelationships {
55272
- /**
55273
- *
55274
- * @type {JsonApiWorkspacePatchRelationshipsParent}
55275
- * @memberof JsonApiWorkspacePatchRelationships
55276
- */
55277
- parent?: JsonApiWorkspacePatchRelationshipsParent;
55278
- }
55279
-
55280
- /**
55281
- *
55282
- * @export
55283
- * @interface JsonApiWorkspacePatchRelationshipsParent
55284
- */
55285
- export declare interface JsonApiWorkspacePatchRelationshipsParent {
55286
- /**
55287
- *
55288
- * @type {JsonApiWorkspaceToOneLinkage}
55289
- * @memberof JsonApiWorkspacePatchRelationshipsParent
55290
- */
55291
- data: JsonApiWorkspaceToOneLinkage | null;
55292
- }
55293
-
55294
55311
  export declare const JsonApiWorkspacePatchTypeEnum: {
55295
55312
  readonly WORKSPACE: "workspace";
55296
55313
  };
@@ -55317,12 +55334,57 @@ export declare interface JsonApiWorkspaceSettingIn {
55317
55334
  id: string;
55318
55335
  /**
55319
55336
  *
55320
- * @type {JsonApiOrganizationSettingPatchAttributes}
55337
+ * @type {JsonApiWorkspaceSettingInAttributes}
55321
55338
  * @memberof JsonApiWorkspaceSettingIn
55322
55339
  */
55323
- attributes?: JsonApiOrganizationSettingPatchAttributes;
55340
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55341
+ }
55342
+
55343
+ /**
55344
+ *
55345
+ * @export
55346
+ * @interface JsonApiWorkspaceSettingInAttributes
55347
+ */
55348
+ export declare interface JsonApiWorkspaceSettingInAttributes {
55349
+ /**
55350
+ * Free-form JSON content. Maximum supported length is 15000 characters.
55351
+ * @type {object}
55352
+ * @memberof JsonApiWorkspaceSettingInAttributes
55353
+ */
55354
+ content?: object;
55355
+ /**
55356
+ *
55357
+ * @type {string}
55358
+ * @memberof JsonApiWorkspaceSettingInAttributes
55359
+ */
55360
+ type?: JsonApiWorkspaceSettingInAttributesTypeEnum;
55324
55361
  }
55325
55362
 
55363
+ export declare const JsonApiWorkspaceSettingInAttributesTypeEnum: {
55364
+ readonly TIMEZONE: "TIMEZONE";
55365
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
55366
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
55367
+ readonly WHITE_LABELING: "WHITE_LABELING";
55368
+ readonly LOCALE: "LOCALE";
55369
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
55370
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
55371
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
55372
+ readonly WEEK_START: "WEEK_START";
55373
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
55374
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
55375
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
55376
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
55377
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
55378
+ readonly ALERT: "ALERT";
55379
+ readonly SEPARATORS: "SEPARATORS";
55380
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
55381
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
55382
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
55383
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
55384
+ };
55385
+
55386
+ export declare type JsonApiWorkspaceSettingInAttributesTypeEnum = typeof JsonApiWorkspaceSettingInAttributesTypeEnum[keyof typeof JsonApiWorkspaceSettingInAttributesTypeEnum];
55387
+
55326
55388
  /**
55327
55389
  *
55328
55390
  * @export
@@ -55369,10 +55431,10 @@ export declare interface JsonApiWorkspaceSettingOut {
55369
55431
  meta?: JsonApiVisualizationObjectOutMeta;
55370
55432
  /**
55371
55433
  *
55372
- * @type {JsonApiOrganizationSettingPatchAttributes}
55434
+ * @type {JsonApiWorkspaceSettingInAttributes}
55373
55435
  * @memberof JsonApiWorkspaceSettingOut
55374
55436
  */
55375
- attributes?: JsonApiOrganizationSettingPatchAttributes;
55437
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55376
55438
  }
55377
55439
 
55378
55440
  /**
@@ -55453,10 +55515,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
55453
55515
  meta?: JsonApiVisualizationObjectOutMeta;
55454
55516
  /**
55455
55517
  *
55456
- * @type {JsonApiOrganizationSettingPatchAttributes}
55518
+ * @type {JsonApiWorkspaceSettingInAttributes}
55457
55519
  * @memberof JsonApiWorkspaceSettingOutWithLinks
55458
55520
  */
55459
- attributes?: JsonApiOrganizationSettingPatchAttributes;
55521
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55460
55522
  /**
55461
55523
  *
55462
55524
  * @type {ObjectLinks}
@@ -55491,10 +55553,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
55491
55553
  id: string;
55492
55554
  /**
55493
55555
  *
55494
- * @type {JsonApiOrganizationSettingPatchAttributes}
55556
+ * @type {JsonApiWorkspaceSettingInAttributes}
55495
55557
  * @memberof JsonApiWorkspaceSettingPatch
55496
55558
  */
55497
- attributes?: JsonApiOrganizationSettingPatchAttributes;
55559
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55498
55560
  }
55499
55561
 
55500
55562
  /**
@@ -55537,10 +55599,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
55537
55599
  id?: string;
55538
55600
  /**
55539
55601
  *
55540
- * @type {JsonApiOrganizationSettingPatchAttributes}
55602
+ * @type {JsonApiWorkspaceSettingInAttributes}
55541
55603
  * @memberof JsonApiWorkspaceSettingPostOptionalId
55542
55604
  */
55543
- attributes?: JsonApiOrganizationSettingPatchAttributes;
55605
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55544
55606
  }
55545
55607
 
55546
55608
  /**
@@ -74009,10 +74071,11 @@ export declare const TestDefinitionRequestTypeEnum: {
74009
74071
  readonly MYSQL: "MYSQL";
74010
74072
  readonly MARIADB: "MARIADB";
74011
74073
  readonly ORACLE: "ORACLE";
74012
- readonly PINOT: "PINOT";
74013
74074
  readonly SINGLESTORE: "SINGLESTORE";
74014
74075
  readonly MOTHERDUCK: "MOTHERDUCK";
74015
74076
  readonly FLEXCONNECT: "FLEXCONNECT";
74077
+ readonly STARROCKS: "STARROCKS";
74078
+ readonly ATHENA: "ATHENA";
74016
74079
  };
74017
74080
 
74018
74081
  export declare type TestDefinitionRequestTypeEnum = typeof TestDefinitionRequestTypeEnum[keyof typeof TestDefinitionRequestTypeEnum];
@@ -77098,6 +77161,7 @@ export declare const UserManagementWorkspacePermissionAssignmentHierarchyPermiss
77098
77161
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
77099
77162
  readonly EXPORT_PDF: "EXPORT_PDF";
77100
77163
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
77164
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
77101
77165
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
77102
77166
  readonly VIEW: "VIEW";
77103
77167
  };
@@ -77111,6 +77175,7 @@ export declare const UserManagementWorkspacePermissionAssignmentPermissionsEnum:
77111
77175
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
77112
77176
  readonly EXPORT_PDF: "EXPORT_PDF";
77113
77177
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
77178
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
77114
77179
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
77115
77180
  readonly VIEW: "VIEW";
77116
77181
  };
@@ -88313,6 +88378,7 @@ export declare const WorkspacePermissionAssignmentHierarchyPermissionsEnum: {
88313
88378
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
88314
88379
  readonly EXPORT_PDF: "EXPORT_PDF";
88315
88380
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
88381
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
88316
88382
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
88317
88383
  readonly VIEW: "VIEW";
88318
88384
  };
@@ -88326,6 +88392,7 @@ export declare const WorkspacePermissionAssignmentPermissionsEnum: {
88326
88392
  readonly EXPORT_TABULAR: "EXPORT_TABULAR";
88327
88393
  readonly EXPORT_PDF: "EXPORT_PDF";
88328
88394
  readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
88395
+ readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
88329
88396
  readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
88330
88397
  readonly VIEW: "VIEW";
88331
88398
  };