@gooddata/api-client-tiger 10.29.0-alpha.2 → 10.29.0-alpha.21

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.
Files changed (31) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.d.ts.map +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/__version.js.map +1 -1
  5. package/esm/api-client-tiger.d.ts +1350 -939
  6. package/esm/generated/afm-rest-api/api.d.ts +6 -0
  7. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  8. package/esm/generated/afm-rest-api/api.js.map +1 -1
  9. package/esm/generated/afm-rest-api/openapi-spec.json +6 -1
  10. package/esm/generated/automation-json-api/api.d.ts +173 -0
  11. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  12. package/esm/generated/automation-json-api/api.js +5 -0
  13. package/esm/generated/automation-json-api/api.js.map +1 -1
  14. package/esm/generated/automation-json-api/openapi-spec.json +162 -0
  15. package/esm/generated/export-json-api/api.d.ts +6 -0
  16. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  17. package/esm/generated/export-json-api/api.js.map +1 -1
  18. package/esm/generated/export-json-api/openapi-spec.json +6 -0
  19. package/esm/generated/metadata-json-api/api.d.ts +1099 -893
  20. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  21. package/esm/generated/metadata-json-api/api.js +61 -42
  22. package/esm/generated/metadata-json-api/api.js.map +1 -1
  23. package/esm/generated/metadata-json-api/openapi-spec.json +7037 -6817
  24. package/esm/generated/scan-json-api/api.d.ts +1 -0
  25. package/esm/generated/scan-json-api/api.d.ts.map +1 -1
  26. package/esm/generated/scan-json-api/api.js +1 -0
  27. package/esm/generated/scan-json-api/api.js.map +1 -1
  28. package/esm/generated/scan-json-api/openapi-spec.json +1 -0
  29. package/esm/index.d.ts +2 -2
  30. package/esm/index.d.ts.map +1 -1
  31. package/package.json +3 -3
@@ -3641,25 +3641,25 @@ export declare interface AFM {
3641
3641
  * @type {Array<AttributeItem>}
3642
3642
  * @memberof AFM
3643
3643
  */
3644
- attributes: Array<AfmAttributeItem>;
3644
+ attributes: Array<AttributeItem>;
3645
3645
  /**
3646
3646
  * Various filter types to filter the execution result.
3647
3647
  * @type {Array<FilterDefinition>}
3648
3648
  * @memberof AFM
3649
3649
  */
3650
- filters: Array<AfmFilterDefinition>;
3650
+ filters: Array<FilterDefinition>;
3651
3651
  /**
3652
3652
  * Metrics to be computed.
3653
3653
  * @type {Array<MeasureItem>}
3654
3654
  * @memberof AFM
3655
3655
  */
3656
- measures: Array<AfmMeasureItem>;
3656
+ measures: Array<MeasureItem>;
3657
3657
  /**
3658
3658
  * Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
3659
3659
  * @type {Array<MeasureItem>}
3660
3660
  * @memberof AFM
3661
3661
  */
3662
- auxMeasures?: Array<AfmMeasureItem>;
3662
+ auxMeasures?: Array<MeasureItem>;
3663
3663
  }
3664
3664
 
3665
3665
  /**
@@ -4924,7 +4924,7 @@ export declare interface AfmExecution {
4924
4924
  * @type {AFM}
4925
4925
  * @memberof AfmExecution
4926
4926
  */
4927
- execution: AFM;
4927
+ execution: AfmModel;
4928
4928
  /**
4929
4929
  *
4930
4930
  * @type {ResultSpec}
@@ -4936,7 +4936,7 @@ export declare interface AfmExecution {
4936
4936
  * @type {ExecutionSettings}
4937
4937
  * @memberof AfmExecution
4938
4938
  */
4939
- settings?: ExecutionSettings;
4939
+ settings?: AfmExecutionSettings;
4940
4940
  }
4941
4941
 
4942
4942
  /**
@@ -4953,6 +4953,26 @@ export declare interface AfmExecutionResponse {
4953
4953
  executionResponse: ExecutionResponse;
4954
4954
  }
4955
4955
 
4956
+ /**
4957
+ * Various settings affecting the process of AFM execution or its result
4958
+ * @export
4959
+ * @interface ExecutionSettings
4960
+ */
4961
+ export declare interface AfmExecutionSettings {
4962
+ /**
4963
+ * Specifies the percentage of rows from fact datasets to use during computation. This feature is available only for workspaces that use a Vertica Data Source without table views.
4964
+ * @type {number}
4965
+ * @memberof ExecutionSettings
4966
+ */
4967
+ dataSamplingPercentage?: number;
4968
+ /**
4969
+ * Specifies the timestamp of the execution from which relative filters are resolved. If not set, the current time is used.
4970
+ * @type {string}
4971
+ * @memberof ExecutionSettings
4972
+ */
4973
+ timestamp?: string;
4974
+ }
4975
+
4956
4976
  /**
4957
4977
  * Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
4958
4978
  * @export
@@ -5964,6 +5984,58 @@ export declare const AfmExportRankingFilterRankingFilterOperatorEnum: {
5964
5984
 
5965
5985
  export declare type AfmExportRankingFilterRankingFilterOperatorEnum = typeof AfmExportRankingFilterRankingFilterOperatorEnum[keyof typeof AfmExportRankingFilterRankingFilterOperatorEnum];
5966
5986
 
5987
+ /**
5988
+ * Custom label object override.
5989
+ * @export
5990
+ * @interface RawCustomLabel
5991
+ */
5992
+ export declare interface AfmExportRawCustomLabel {
5993
+ /**
5994
+ * Override value.
5995
+ * @type {string}
5996
+ * @memberof RawCustomLabel
5997
+ */
5998
+ title: string;
5999
+ }
6000
+
6001
+ /**
6002
+ * Custom metric object override.
6003
+ * @export
6004
+ * @interface RawCustomMetric
6005
+ */
6006
+ export declare interface AfmExportRawCustomMetric {
6007
+ /**
6008
+ * Metric title override.
6009
+ * @type {string}
6010
+ * @memberof RawCustomMetric
6011
+ */
6012
+ title: string;
6013
+ }
6014
+
6015
+ /**
6016
+ * Custom cell value overrides (IDs will be replaced with specified values).
6017
+ * @export
6018
+ * @interface RawCustomOverride
6019
+ */
6020
+ export declare interface AfmExportRawCustomOverride {
6021
+ /**
6022
+ * Map of CustomLabels with keys used as placeholders in export result.
6023
+ * @type {{ [key: string]: RawCustomLabel; }}
6024
+ * @memberof RawCustomOverride
6025
+ */
6026
+ labels?: {
6027
+ [key: string]: AfmExportRawCustomLabel;
6028
+ };
6029
+ /**
6030
+ * Map of CustomMetrics with keys used as placeholders in export result.
6031
+ * @type {{ [key: string]: RawCustomMetric; }}
6032
+ * @memberof RawCustomOverride
6033
+ */
6034
+ metrics?: {
6035
+ [key: string]: AfmExportRawCustomMetric;
6036
+ };
6037
+ }
6038
+
5967
6039
  /**
5968
6040
  * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
5969
6041
  * @export
@@ -6231,6 +6303,38 @@ export declare interface AfmMeasureItem {
6231
6303
  definition: AfmMeasureDefinition;
6232
6304
  }
6233
6305
 
6306
+ /**
6307
+ * Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
6308
+ * @export
6309
+ * @interface AFM
6310
+ */
6311
+ export declare interface AfmModel {
6312
+ /**
6313
+ * Attributes to be used in the computation.
6314
+ * @type {Array<AttributeItem>}
6315
+ * @memberof AFM
6316
+ */
6317
+ attributes: Array<AfmAttributeItem>;
6318
+ /**
6319
+ * Various filter types to filter the execution result.
6320
+ * @type {Array<FilterDefinition>}
6321
+ * @memberof AFM
6322
+ */
6323
+ filters: Array<AfmFilterDefinition>;
6324
+ /**
6325
+ * Metrics to be computed.
6326
+ * @type {Array<MeasureItem>}
6327
+ * @memberof AFM
6328
+ */
6329
+ measures: Array<AfmMeasureItem>;
6330
+ /**
6331
+ * Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
6332
+ * @type {Array<MeasureItem>}
6333
+ * @memberof AFM
6334
+ */
6335
+ auxMeasures?: Array<AfmMeasureItem>;
6336
+ }
6337
+
6234
6338
  /**
6235
6339
  * @type AfmIdentifier
6236
6340
  * Reference to the attribute label to which the filter should be applied.
@@ -7208,7 +7312,7 @@ export declare interface AfmValidObjectsQuery {
7208
7312
  * @type {AFM}
7209
7313
  * @memberof AfmValidObjectsQuery
7210
7314
  */
7211
- afm: AFM;
7315
+ afm: AfmModel;
7212
7316
  }
7213
7317
 
7214
7318
  export declare const AfmValidObjectsQueryTypesEnum: {
@@ -10494,6 +10598,12 @@ export declare interface AutomationAdHocAutomation {
10494
10598
  * @memberof AutomationAdHocAutomation
10495
10599
  */
10496
10600
  imageExports?: Array<AutomationAutomationImageExport>;
10601
+ /**
10602
+ *
10603
+ * @type {Array<AutomationAutomationRawExport>}
10604
+ * @memberof AutomationAdHocAutomation
10605
+ */
10606
+ rawExports?: Array<AutomationAutomationRawExport>;
10497
10607
  /**
10498
10608
  * External recipients of the automation action results.
10499
10609
  * @type {Array<AutomationAutomationExternalRecipient>}
@@ -10520,6 +10630,38 @@ export declare interface AutomationAdHocAutomation {
10520
10630
  analyticalDashboard?: AutomationDeclarativeAnalyticalDashboardIdentifier;
10521
10631
  }
10522
10632
 
10633
+ /**
10634
+ * Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
10635
+ * @export
10636
+ * @interface AutomationAFM
10637
+ */
10638
+ export declare interface AutomationAFM {
10639
+ /**
10640
+ * Attributes to be used in the computation.
10641
+ * @type {Array<AutomationAttributeItem>}
10642
+ * @memberof AutomationAFM
10643
+ */
10644
+ attributes: Array<AutomationAttributeItem>;
10645
+ /**
10646
+ * Various filter types to filter the execution result.
10647
+ * @type {Array<AutomationAbstractMeasureValueFilter | AutomationFilterDefinitionForSimpleMeasure | AutomationInlineFilterDefinition>}
10648
+ * @memberof AutomationAFM
10649
+ */
10650
+ filters: Array<AutomationAbstractMeasureValueFilter | AutomationFilterDefinitionForSimpleMeasure | AutomationInlineFilterDefinition>;
10651
+ /**
10652
+ * Metrics to be computed.
10653
+ * @type {Array<AutomationMeasureItem>}
10654
+ * @memberof AutomationAFM
10655
+ */
10656
+ measures: Array<AutomationMeasureItem>;
10657
+ /**
10658
+ * Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
10659
+ * @type {Array<AutomationMeasureItem>}
10660
+ * @memberof AutomationAFM
10661
+ */
10662
+ auxMeasures?: Array<AutomationMeasureItem>;
10663
+ }
10664
+
10523
10665
  /**
10524
10666
  * @type AutomationAfmIdentifier
10525
10667
  * Reference to the attribute label to which the filter should be applied.
@@ -11204,6 +11346,20 @@ export declare interface AutomationAutomationNotificationAllOf {
11204
11346
  content?: AutomationWebhookMessage;
11205
11347
  }
11206
11348
 
11349
+ /**
11350
+ *
11351
+ * @export
11352
+ * @interface AutomationAutomationRawExport
11353
+ */
11354
+ export declare interface AutomationAutomationRawExport {
11355
+ /**
11356
+ *
11357
+ * @type {AutomationRawExportRequest}
11358
+ * @memberof AutomationAutomationRawExport
11359
+ */
11360
+ requestPayload: AutomationRawExportRequest;
11361
+ }
11362
+
11207
11363
  /**
11208
11364
  *
11209
11365
  * @export
@@ -11630,6 +11786,26 @@ export declare const AutomationDefaultSmtpTypeEnum: {
11630
11786
 
11631
11787
  export declare type AutomationDefaultSmtpTypeEnum = typeof AutomationDefaultSmtpTypeEnum[keyof typeof AutomationDefaultSmtpTypeEnum];
11632
11788
 
11789
+ /**
11790
+ * Various settings affecting the process of AFM execution or its result
11791
+ * @export
11792
+ * @interface AutomationExecutionSettings
11793
+ */
11794
+ export declare interface AutomationExecutionSettings {
11795
+ /**
11796
+ * Specifies the percentage of rows from fact datasets to use during computation. This feature is available only for workspaces that use a Vertica Data Source without table views.
11797
+ * @type {number}
11798
+ * @memberof AutomationExecutionSettings
11799
+ */
11800
+ dataSamplingPercentage?: number;
11801
+ /**
11802
+ * Specifies the timestamp of the execution from which relative filters are resolved. If not set, the current time is used.
11803
+ * @type {string}
11804
+ * @memberof AutomationExecutionSettings
11805
+ */
11806
+ timestamp?: string;
11807
+ }
11808
+
11633
11809
  /**
11634
11810
  *
11635
11811
  * @export
@@ -12548,6 +12724,118 @@ export declare const AutomationRankingFilterRankingFilterOperatorEnum: {
12548
12724
 
12549
12725
  export declare type AutomationRankingFilterRankingFilterOperatorEnum = typeof AutomationRankingFilterRankingFilterOperatorEnum[keyof typeof AutomationRankingFilterRankingFilterOperatorEnum];
12550
12726
 
12727
+ /**
12728
+ * Custom label object override.
12729
+ * @export
12730
+ * @interface AutomationRawCustomLabel
12731
+ */
12732
+ export declare interface AutomationRawCustomLabel {
12733
+ /**
12734
+ * Override value.
12735
+ * @type {string}
12736
+ * @memberof AutomationRawCustomLabel
12737
+ */
12738
+ title: string;
12739
+ }
12740
+
12741
+ /**
12742
+ * Custom metric object override.
12743
+ * @export
12744
+ * @interface AutomationRawCustomMetric
12745
+ */
12746
+ export declare interface AutomationRawCustomMetric {
12747
+ /**
12748
+ * Metric title override.
12749
+ * @type {string}
12750
+ * @memberof AutomationRawCustomMetric
12751
+ */
12752
+ title: string;
12753
+ }
12754
+
12755
+ /**
12756
+ * Custom cell value overrides (IDs will be replaced with specified values).
12757
+ * @export
12758
+ * @interface AutomationRawCustomOverride
12759
+ */
12760
+ export declare interface AutomationRawCustomOverride {
12761
+ /**
12762
+ * Map of CustomLabels with keys used as placeholders in export result.
12763
+ * @type {{ [key: string]: AutomationRawCustomLabel; }}
12764
+ * @memberof AutomationRawCustomOverride
12765
+ */
12766
+ labels?: {
12767
+ [key: string]: AutomationRawCustomLabel;
12768
+ };
12769
+ /**
12770
+ * Map of CustomMetrics with keys used as placeholders in export result.
12771
+ * @type {{ [key: string]: AutomationRawCustomMetric; }}
12772
+ * @memberof AutomationRawCustomOverride
12773
+ */
12774
+ metrics?: {
12775
+ [key: string]: AutomationRawCustomMetric;
12776
+ };
12777
+ }
12778
+
12779
+ /**
12780
+ *
12781
+ * @export
12782
+ * @interface AutomationRawExport
12783
+ */
12784
+ export declare interface AutomationRawExport {
12785
+ /**
12786
+ *
12787
+ * @type {RawExportRequest}
12788
+ * @memberof AutomationRawExport
12789
+ */
12790
+ requestPayload: RawExportRequest;
12791
+ }
12792
+
12793
+ /**
12794
+ * Export request object describing the export properties and overrides for raw exports.
12795
+ * @export
12796
+ * @interface AutomationRawExportRequest
12797
+ */
12798
+ export declare interface AutomationRawExportRequest {
12799
+ /**
12800
+ * Requested resulting file type.
12801
+ * @type {string}
12802
+ * @memberof AutomationRawExportRequest
12803
+ */
12804
+ format: AutomationRawExportRequestFormatEnum;
12805
+ /**
12806
+ *
12807
+ * @type {AutomationAFM}
12808
+ * @memberof AutomationRawExportRequest
12809
+ */
12810
+ execution: AutomationAFM;
12811
+ /**
12812
+ * Filename of downloaded file without extension.
12813
+ * @type {string}
12814
+ * @memberof AutomationRawExportRequest
12815
+ */
12816
+ fileName: string;
12817
+ /**
12818
+ *
12819
+ * @type {AutomationRawCustomOverride}
12820
+ * @memberof AutomationRawExportRequest
12821
+ */
12822
+ customOverride?: AutomationRawCustomOverride;
12823
+ /**
12824
+ *
12825
+ * @type {AutomationExecutionSettings}
12826
+ * @memberof AutomationRawExportRequest
12827
+ */
12828
+ executionSettings?: AutomationExecutionSettings;
12829
+ }
12830
+
12831
+ export declare const AutomationRawExportRequestFormatEnum: {
12832
+ readonly ARROW_FILE: "ARROW_FILE";
12833
+ readonly ARROW_STREAM: "ARROW_STREAM";
12834
+ readonly CSV: "CSV";
12835
+ };
12836
+
12837
+ export declare type AutomationRawExportRequestFormatEnum = typeof AutomationRawExportRequestFormatEnum[keyof typeof AutomationRawExportRequestFormatEnum];
12838
+
12551
12839
  /**
12552
12840
  *
12553
12841
  * @export
@@ -13598,6 +13886,12 @@ export declare interface AutomationSchedule {
13598
13886
  * @interface AutomationSettings
13599
13887
  */
13600
13888
  export declare interface AutomationSettings {
13889
+ /**
13890
+ * Include export info sheet in the exported file. (XLSX)
13891
+ * @type {boolean}
13892
+ * @memberof AutomationSettings
13893
+ */
13894
+ exportInfo?: boolean;
13601
13895
  /**
13602
13896
  * Merge equal headers in neighbouring cells. (XLSX)
13603
13897
  * @type {boolean}
@@ -14147,6 +14441,12 @@ export declare interface AutomationWebhookMessageData {
14147
14441
  * @memberof AutomationWebhookMessageData
14148
14442
  */
14149
14443
  imageExports?: Array<AutomationExportResult>;
14444
+ /**
14445
+ *
14446
+ * @type {Array<AutomationExportResult>}
14447
+ * @memberof AutomationWebhookMessageData
14448
+ */
14449
+ rawExports?: Array<AutomationExportResult>;
14150
14450
  /**
14151
14451
  *
14152
14452
  * @type {AutomationAlertDescription}
@@ -14625,6 +14925,12 @@ export declare interface ChatUsageResponse {
14625
14925
  * @memberof ChatUsageResponse
14626
14926
  */
14627
14927
  interactionCount: number;
14928
+ /**
14929
+ * Maximum number of interactions in the time window any user can do in the workspace
14930
+ * @type {number}
14931
+ * @memberof ChatUsageResponse
14932
+ */
14933
+ interactionLimit: number;
14628
14934
  /**
14629
14935
  * Time window in hours
14630
14936
  * @type {number}
@@ -21368,6 +21674,12 @@ export declare interface DeclarativeAutomation {
21368
21674
  * @memberof DeclarativeAutomation
21369
21675
  */
21370
21676
  imageExports?: Array<AutomationImageExport>;
21677
+ /**
21678
+ *
21679
+ * @type {Array<AutomationRawExport>}
21680
+ * @memberof DeclarativeAutomation
21681
+ */
21682
+ rawExports?: Array<AutomationRawExport>;
21371
21683
  /**
21372
21684
  * External recipients of the automation action results.
21373
21685
  * @type {Array<AutomationExternalRecipient>}
@@ -21937,6 +22249,7 @@ export declare const DeclarativeDataSourceTypeEnum: {
21937
22249
  readonly MYSQL: "MYSQL";
21938
22250
  readonly MARIADB: "MARIADB";
21939
22251
  readonly ORACLE: "ORACLE";
22252
+ readonly PINOT: "PINOT";
21940
22253
  readonly SINGLESTORE: "SINGLESTORE";
21941
22254
  readonly MOTHERDUCK: "MOTHERDUCK";
21942
22255
  readonly FLEXCONNECT: "FLEXCONNECT";
@@ -23108,9 +23421,12 @@ export declare const DeclarativeSettingTypeEnum: {
23108
23421
  readonly SEPARATORS: "SEPARATORS";
23109
23422
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
23110
23423
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
23424
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
23111
23425
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
23112
23426
  readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
23113
23427
  readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
23428
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
23429
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
23114
23430
  };
23115
23431
 
23116
23432
  export declare type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
@@ -41104,6 +41420,12 @@ export declare interface ExportActionsPdfTableStyleProperty {
41104
41420
  * @interface Settings
41105
41421
  */
41106
41422
  export declare interface ExportActionsSettings {
41423
+ /**
41424
+ * Include export info sheet in the exported file. (XLSX)
41425
+ * @type {boolean}
41426
+ * @memberof Settings
41427
+ */
41428
+ exportInfo?: boolean;
41107
41429
  /**
41108
41430
  * Merge equal headers in neighbouring cells. (XLSX)
41109
41431
  * @type {boolean}
@@ -45005,10 +45327,48 @@ export declare interface JsonApiAnalyticalDashboardIn {
45005
45327
  id: string;
45006
45328
  /**
45007
45329
  *
45008
- * @type {JsonApiFilterContextOutAttributes}
45330
+ * @type {JsonApiAnalyticalDashboardInAttributes}
45009
45331
  * @memberof JsonApiAnalyticalDashboardIn
45010
45332
  */
45011
- attributes: JsonApiFilterContextOutAttributes;
45333
+ attributes: JsonApiAnalyticalDashboardInAttributes;
45334
+ }
45335
+
45336
+ /**
45337
+ *
45338
+ * @export
45339
+ * @interface JsonApiAnalyticalDashboardInAttributes
45340
+ */
45341
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
45342
+ /**
45343
+ *
45344
+ * @type {string}
45345
+ * @memberof JsonApiAnalyticalDashboardInAttributes
45346
+ */
45347
+ title?: string;
45348
+ /**
45349
+ *
45350
+ * @type {string}
45351
+ * @memberof JsonApiAnalyticalDashboardInAttributes
45352
+ */
45353
+ description?: string;
45354
+ /**
45355
+ *
45356
+ * @type {Array<string>}
45357
+ * @memberof JsonApiAnalyticalDashboardInAttributes
45358
+ */
45359
+ tags?: Array<string>;
45360
+ /**
45361
+ *
45362
+ * @type {boolean}
45363
+ * @memberof JsonApiAnalyticalDashboardInAttributes
45364
+ */
45365
+ areRelationsValid?: boolean;
45366
+ /**
45367
+ * Free-form JSON content. Maximum supported length is 250000 characters.
45368
+ * @type {object}
45369
+ * @memberof JsonApiAnalyticalDashboardInAttributes
45370
+ */
45371
+ content: object;
45012
45372
  }
45013
45373
 
45014
45374
  /**
@@ -45485,10 +45845,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
45485
45845
  id?: string;
45486
45846
  /**
45487
45847
  *
45488
- * @type {JsonApiFilterContextOutAttributes}
45848
+ * @type {JsonApiAnalyticalDashboardInAttributes}
45489
45849
  * @memberof JsonApiAnalyticalDashboardPostOptionalId
45490
45850
  */
45491
- attributes: JsonApiFilterContextOutAttributes;
45851
+ attributes: JsonApiAnalyticalDashboardInAttributes;
45492
45852
  }
45493
45853
 
45494
45854
  /**
@@ -46528,10 +46888,10 @@ export declare interface JsonApiAutomationInAttributes {
46528
46888
  details?: any;
46529
46889
  /**
46530
46890
  *
46531
- * @type {JsonApiAutomationOutAttributesMetadata}
46891
+ * @type {JsonApiAutomationInAttributesMetadata}
46532
46892
  * @memberof JsonApiAutomationInAttributes
46533
46893
  */
46534
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
46894
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
46535
46895
  /**
46536
46896
  * Current state of the automation.
46537
46897
  * @type {string}
@@ -46540,40 +46900,173 @@ export declare interface JsonApiAutomationInAttributes {
46540
46900
  state?: JsonApiAutomationInAttributesStateEnum;
46541
46901
  /**
46542
46902
  *
46543
- * @type {JsonApiAutomationOutAttributesSchedule}
46903
+ * @type {JsonApiAutomationInAttributesSchedule}
46904
+ * @memberof JsonApiAutomationInAttributes
46905
+ */
46906
+ schedule?: JsonApiAutomationInAttributesSchedule;
46907
+ /**
46908
+ *
46909
+ * @type {JsonApiAutomationInAttributesAlert}
46544
46910
  * @memberof JsonApiAutomationInAttributes
46545
46911
  */
46546
- schedule?: JsonApiAutomationOutAttributesSchedule;
46912
+ alert?: JsonApiAutomationInAttributesAlert;
46547
46913
  /**
46548
46914
  *
46549
- * @type {JsonApiAutomationOutAttributesAlert}
46915
+ * @type {Array<JsonApiAutomationInAttributesTabularExports>}
46550
46916
  * @memberof JsonApiAutomationInAttributes
46551
46917
  */
46552
- alert?: JsonApiAutomationOutAttributesAlert;
46918
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
46553
46919
  /**
46554
46920
  *
46555
- * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
46921
+ * @type {Array<JsonApiAutomationInAttributesVisualExports>}
46556
46922
  * @memberof JsonApiAutomationInAttributes
46557
46923
  */
46558
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
46924
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
46559
46925
  /**
46560
46926
  *
46561
- * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
46927
+ * @type {Array<JsonApiAutomationInAttributesImageExports>}
46562
46928
  * @memberof JsonApiAutomationInAttributes
46563
46929
  */
46564
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
46930
+ imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
46565
46931
  /**
46566
46932
  *
46567
- * @type {Array<JsonApiAutomationOutAttributesImageExports>}
46933
+ * @type {Array<JsonApiAutomationInAttributesRawExports>}
46568
46934
  * @memberof JsonApiAutomationInAttributes
46569
46935
  */
46570
- imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
46936
+ rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
46571
46937
  /**
46572
46938
  * External recipients of the automation action results.
46573
- * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
46939
+ * @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
46574
46940
  * @memberof JsonApiAutomationInAttributes
46575
46941
  */
46576
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
46942
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
46943
+ }
46944
+
46945
+ /**
46946
+ *
46947
+ * @export
46948
+ * @interface JsonApiAutomationInAttributesAlert
46949
+ */
46950
+ export declare interface JsonApiAutomationInAttributesAlert {
46951
+ /**
46952
+ *
46953
+ * @type {AlertAfm}
46954
+ * @memberof JsonApiAutomationInAttributesAlert
46955
+ */
46956
+ execution: AlertAfm;
46957
+ /**
46958
+ *
46959
+ * @type {AlertCondition}
46960
+ * @memberof JsonApiAutomationInAttributesAlert
46961
+ */
46962
+ condition: AlertCondition;
46963
+ /**
46964
+ * 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.
46965
+ * @type {string}
46966
+ * @memberof JsonApiAutomationInAttributesAlert
46967
+ */
46968
+ trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
46969
+ }
46970
+
46971
+ export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
46972
+ readonly ALWAYS: "ALWAYS";
46973
+ readonly ONCE: "ONCE";
46974
+ };
46975
+
46976
+ export declare type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
46977
+
46978
+ /**
46979
+ *
46980
+ * @export
46981
+ * @interface JsonApiAutomationInAttributesExternalRecipients
46982
+ */
46983
+ export declare interface JsonApiAutomationInAttributesExternalRecipients {
46984
+ /**
46985
+ * E-mail address to send notifications from.
46986
+ * @type {string}
46987
+ * @memberof JsonApiAutomationInAttributesExternalRecipients
46988
+ */
46989
+ email: string;
46990
+ }
46991
+
46992
+ /**
46993
+ *
46994
+ * @export
46995
+ * @interface JsonApiAutomationInAttributesImageExports
46996
+ */
46997
+ export declare interface JsonApiAutomationInAttributesImageExports {
46998
+ /**
46999
+ *
47000
+ * @type {ImageExportRequest}
47001
+ * @memberof JsonApiAutomationInAttributesImageExports
47002
+ */
47003
+ requestPayload: ImageExportRequest;
47004
+ }
47005
+
47006
+ /**
47007
+ * Additional information for the automation.
47008
+ * @export
47009
+ * @interface JsonApiAutomationInAttributesMetadata
47010
+ */
47011
+ export declare interface JsonApiAutomationInAttributesMetadata {
47012
+ /**
47013
+ *
47014
+ * @type {string}
47015
+ * @memberof JsonApiAutomationInAttributesMetadata
47016
+ */
47017
+ widget?: string;
47018
+ /**
47019
+ *
47020
+ * @type {Array<VisibleFilter>}
47021
+ * @memberof JsonApiAutomationInAttributesMetadata
47022
+ */
47023
+ visibleFilters?: Array<VisibleFilter>;
47024
+ }
47025
+
47026
+ /**
47027
+ *
47028
+ * @export
47029
+ * @interface JsonApiAutomationInAttributesRawExports
47030
+ */
47031
+ export declare interface JsonApiAutomationInAttributesRawExports {
47032
+ /**
47033
+ *
47034
+ * @type {RawExportRequest}
47035
+ * @memberof JsonApiAutomationInAttributesRawExports
47036
+ */
47037
+ requestPayload: RawExportRequest;
47038
+ }
47039
+
47040
+ /**
47041
+ *
47042
+ * @export
47043
+ * @interface JsonApiAutomationInAttributesSchedule
47044
+ */
47045
+ export declare interface JsonApiAutomationInAttributesSchedule {
47046
+ /**
47047
+ * 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.
47048
+ * @type {string}
47049
+ * @memberof JsonApiAutomationInAttributesSchedule
47050
+ */
47051
+ cron: string;
47052
+ /**
47053
+ * Human-readable description of the cron expression.
47054
+ * @type {string}
47055
+ * @memberof JsonApiAutomationInAttributesSchedule
47056
+ */
47057
+ cronDescription?: string;
47058
+ /**
47059
+ * Timezone in which the schedule is defined.
47060
+ * @type {string}
47061
+ * @memberof JsonApiAutomationInAttributesSchedule
47062
+ */
47063
+ timezone: string;
47064
+ /**
47065
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
47066
+ * @type {string}
47067
+ * @memberof JsonApiAutomationInAttributesSchedule
47068
+ */
47069
+ firstRun?: string;
46577
47070
  }
46578
47071
 
46579
47072
  export declare const JsonApiAutomationInAttributesStateEnum: {
@@ -46583,6 +47076,34 @@ export declare const JsonApiAutomationInAttributesStateEnum: {
46583
47076
 
46584
47077
  export declare type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
46585
47078
 
47079
+ /**
47080
+ *
47081
+ * @export
47082
+ * @interface JsonApiAutomationInAttributesTabularExports
47083
+ */
47084
+ export declare interface JsonApiAutomationInAttributesTabularExports {
47085
+ /**
47086
+ *
47087
+ * @type {TabularExportRequest}
47088
+ * @memberof JsonApiAutomationInAttributesTabularExports
47089
+ */
47090
+ requestPayload: TabularExportRequest;
47091
+ }
47092
+
47093
+ /**
47094
+ *
47095
+ * @export
47096
+ * @interface JsonApiAutomationInAttributesVisualExports
47097
+ */
47098
+ export declare interface JsonApiAutomationInAttributesVisualExports {
47099
+ /**
47100
+ *
47101
+ * @type {VisualExportRequest}
47102
+ * @memberof JsonApiAutomationInAttributesVisualExports
47103
+ */
47104
+ requestPayload: VisualExportRequest;
47105
+ }
47106
+
46586
47107
  /**
46587
47108
  *
46588
47109
  * @export
@@ -46605,28 +47126,84 @@ export declare interface JsonApiAutomationInDocument {
46605
47126
  export declare interface JsonApiAutomationInRelationships {
46606
47127
  /**
46607
47128
  *
46608
- * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
47129
+ * @type {JsonApiAutomationInRelationshipsNotificationChannel}
46609
47130
  * @memberof JsonApiAutomationInRelationships
46610
47131
  */
46611
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
47132
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
46612
47133
  /**
46613
47134
  *
46614
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
47135
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
46615
47136
  * @memberof JsonApiAutomationInRelationships
46616
47137
  */
46617
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47138
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
46618
47139
  /**
46619
47140
  *
46620
- * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
47141
+ * @type {JsonApiAutomationInRelationshipsExportDefinitions}
46621
47142
  * @memberof JsonApiAutomationInRelationships
46622
47143
  */
46623
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
47144
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
46624
47145
  /**
46625
47146
  *
46626
- * @type {JsonApiAutomationOutRelationshipsRecipients}
47147
+ * @type {JsonApiAutomationInRelationshipsRecipients}
46627
47148
  * @memberof JsonApiAutomationInRelationships
46628
47149
  */
46629
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
47150
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
47151
+ }
47152
+
47153
+ /**
47154
+ *
47155
+ * @export
47156
+ * @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
47157
+ */
47158
+ export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
47159
+ /**
47160
+ *
47161
+ * @type {JsonApiAnalyticalDashboardToOneLinkage}
47162
+ * @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
47163
+ */
47164
+ data: JsonApiAnalyticalDashboardToOneLinkage | null;
47165
+ }
47166
+
47167
+ /**
47168
+ *
47169
+ * @export
47170
+ * @interface JsonApiAutomationInRelationshipsExportDefinitions
47171
+ */
47172
+ export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
47173
+ /**
47174
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47175
+ * @type {Array<JsonApiExportDefinitionLinkage>}
47176
+ * @memberof JsonApiAutomationInRelationshipsExportDefinitions
47177
+ */
47178
+ data: Array<JsonApiExportDefinitionLinkage>;
47179
+ }
47180
+
47181
+ /**
47182
+ *
47183
+ * @export
47184
+ * @interface JsonApiAutomationInRelationshipsNotificationChannel
47185
+ */
47186
+ export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
47187
+ /**
47188
+ *
47189
+ * @type {JsonApiNotificationChannelToOneLinkage}
47190
+ * @memberof JsonApiAutomationInRelationshipsNotificationChannel
47191
+ */
47192
+ data: JsonApiNotificationChannelToOneLinkage | null;
47193
+ }
47194
+
47195
+ /**
47196
+ *
47197
+ * @export
47198
+ * @interface JsonApiAutomationInRelationshipsRecipients
47199
+ */
47200
+ export declare interface JsonApiAutomationInRelationshipsRecipients {
47201
+ /**
47202
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47203
+ * @type {Array<JsonApiUserLinkage>}
47204
+ * @memberof JsonApiAutomationInRelationshipsRecipients
47205
+ */
47206
+ data: Array<JsonApiUserLinkage>;
46630
47207
  }
46631
47208
 
46632
47209
  export declare const JsonApiAutomationInTypeEnum: {
@@ -46737,10 +47314,10 @@ export declare interface JsonApiAutomationOutAttributes {
46737
47314
  details?: any;
46738
47315
  /**
46739
47316
  *
46740
- * @type {JsonApiAutomationOutAttributesMetadata}
47317
+ * @type {JsonApiAutomationInAttributesMetadata}
46741
47318
  * @memberof JsonApiAutomationOutAttributes
46742
47319
  */
46743
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
47320
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
46744
47321
  /**
46745
47322
  * Current state of the automation.
46746
47323
  * @type {string}
@@ -46749,40 +47326,46 @@ export declare interface JsonApiAutomationOutAttributes {
46749
47326
  state?: JsonApiAutomationOutAttributesStateEnum;
46750
47327
  /**
46751
47328
  *
46752
- * @type {JsonApiAutomationOutAttributesSchedule}
47329
+ * @type {JsonApiAutomationInAttributesSchedule}
47330
+ * @memberof JsonApiAutomationOutAttributes
47331
+ */
47332
+ schedule?: JsonApiAutomationInAttributesSchedule;
47333
+ /**
47334
+ *
47335
+ * @type {JsonApiAutomationInAttributesAlert}
46753
47336
  * @memberof JsonApiAutomationOutAttributes
46754
47337
  */
46755
- schedule?: JsonApiAutomationOutAttributesSchedule;
47338
+ alert?: JsonApiAutomationInAttributesAlert;
46756
47339
  /**
46757
47340
  *
46758
- * @type {JsonApiAutomationOutAttributesAlert}
47341
+ * @type {Array<JsonApiAutomationInAttributesTabularExports>}
46759
47342
  * @memberof JsonApiAutomationOutAttributes
46760
47343
  */
46761
- alert?: JsonApiAutomationOutAttributesAlert;
47344
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
46762
47345
  /**
46763
47346
  *
46764
- * @type {Array<JsonApiAutomationOutAttributesTabularExports>}
47347
+ * @type {Array<JsonApiAutomationInAttributesVisualExports>}
46765
47348
  * @memberof JsonApiAutomationOutAttributes
46766
47349
  */
46767
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
47350
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
46768
47351
  /**
46769
47352
  *
46770
- * @type {Array<JsonApiAutomationOutAttributesVisualExports>}
47353
+ * @type {Array<JsonApiAutomationInAttributesImageExports>}
46771
47354
  * @memberof JsonApiAutomationOutAttributes
46772
47355
  */
46773
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
47356
+ imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
46774
47357
  /**
46775
47358
  *
46776
- * @type {Array<JsonApiAutomationOutAttributesImageExports>}
47359
+ * @type {Array<JsonApiAutomationInAttributesRawExports>}
46777
47360
  * @memberof JsonApiAutomationOutAttributes
46778
47361
  */
46779
- imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
47362
+ rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
46780
47363
  /**
46781
47364
  * External recipients of the automation action results.
46782
- * @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
47365
+ * @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
46783
47366
  * @memberof JsonApiAutomationOutAttributes
46784
47367
  */
46785
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
47368
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
46786
47369
  /**
46787
47370
  *
46788
47371
  * @type {string}
@@ -46797,119 +47380,6 @@ export declare interface JsonApiAutomationOutAttributes {
46797
47380
  modifiedAt?: string;
46798
47381
  }
46799
47382
 
46800
- /**
46801
- *
46802
- * @export
46803
- * @interface JsonApiAutomationOutAttributesAlert
46804
- */
46805
- export declare interface JsonApiAutomationOutAttributesAlert {
46806
- /**
46807
- *
46808
- * @type {AlertAfm}
46809
- * @memberof JsonApiAutomationOutAttributesAlert
46810
- */
46811
- execution: AlertAfm;
46812
- /**
46813
- *
46814
- * @type {AlertCondition}
46815
- * @memberof JsonApiAutomationOutAttributesAlert
46816
- */
46817
- condition: AlertCondition;
46818
- /**
46819
- * 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.
46820
- * @type {string}
46821
- * @memberof JsonApiAutomationOutAttributesAlert
46822
- */
46823
- trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
46824
- }
46825
-
46826
- export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
46827
- readonly ALWAYS: "ALWAYS";
46828
- readonly ONCE: "ONCE";
46829
- };
46830
-
46831
- export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
46832
-
46833
- /**
46834
- *
46835
- * @export
46836
- * @interface JsonApiAutomationOutAttributesExternalRecipients
46837
- */
46838
- export declare interface JsonApiAutomationOutAttributesExternalRecipients {
46839
- /**
46840
- * E-mail address to send notifications from.
46841
- * @type {string}
46842
- * @memberof JsonApiAutomationOutAttributesExternalRecipients
46843
- */
46844
- email: string;
46845
- }
46846
-
46847
- /**
46848
- *
46849
- * @export
46850
- * @interface JsonApiAutomationOutAttributesImageExports
46851
- */
46852
- export declare interface JsonApiAutomationOutAttributesImageExports {
46853
- /**
46854
- *
46855
- * @type {ImageExportRequest}
46856
- * @memberof JsonApiAutomationOutAttributesImageExports
46857
- */
46858
- requestPayload: ImageExportRequest;
46859
- }
46860
-
46861
- /**
46862
- * Additional information for the automation.
46863
- * @export
46864
- * @interface JsonApiAutomationOutAttributesMetadata
46865
- */
46866
- export declare interface JsonApiAutomationOutAttributesMetadata {
46867
- /**
46868
- *
46869
- * @type {string}
46870
- * @memberof JsonApiAutomationOutAttributesMetadata
46871
- */
46872
- widget?: string;
46873
- /**
46874
- *
46875
- * @type {Array<VisibleFilter>}
46876
- * @memberof JsonApiAutomationOutAttributesMetadata
46877
- */
46878
- visibleFilters?: Array<VisibleFilter>;
46879
- }
46880
-
46881
- /**
46882
- *
46883
- * @export
46884
- * @interface JsonApiAutomationOutAttributesSchedule
46885
- */
46886
- export declare interface JsonApiAutomationOutAttributesSchedule {
46887
- /**
46888
- * 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.
46889
- * @type {string}
46890
- * @memberof JsonApiAutomationOutAttributesSchedule
46891
- */
46892
- cron: string;
46893
- /**
46894
- * Human-readable description of the cron expression.
46895
- * @type {string}
46896
- * @memberof JsonApiAutomationOutAttributesSchedule
46897
- */
46898
- cronDescription?: string;
46899
- /**
46900
- * Timezone in which the schedule is defined.
46901
- * @type {string}
46902
- * @memberof JsonApiAutomationOutAttributesSchedule
46903
- */
46904
- timezone: string;
46905
- /**
46906
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
46907
- * @type {string}
46908
- * @memberof JsonApiAutomationOutAttributesSchedule
46909
- */
46910
- firstRun?: string;
46911
- }
46912
-
46913
47383
  export declare const JsonApiAutomationOutAttributesStateEnum: {
46914
47384
  readonly ACTIVE: "ACTIVE";
46915
47385
  readonly PAUSED: "PAUSED";
@@ -46917,34 +47387,6 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
46917
47387
 
46918
47388
  export declare type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
46919
47389
 
46920
- /**
46921
- *
46922
- * @export
46923
- * @interface JsonApiAutomationOutAttributesTabularExports
46924
- */
46925
- export declare interface JsonApiAutomationOutAttributesTabularExports {
46926
- /**
46927
- *
46928
- * @type {TabularExportRequest}
46929
- * @memberof JsonApiAutomationOutAttributesTabularExports
46930
- */
46931
- requestPayload: TabularExportRequest;
46932
- }
46933
-
46934
- /**
46935
- *
46936
- * @export
46937
- * @interface JsonApiAutomationOutAttributesVisualExports
46938
- */
46939
- export declare interface JsonApiAutomationOutAttributesVisualExports {
46940
- /**
46941
- *
46942
- * @type {VisualExportRequest}
46943
- * @memberof JsonApiAutomationOutAttributesVisualExports
46944
- */
46945
- requestPayload: VisualExportRequest;
46946
- }
46947
-
46948
47390
  /**
46949
47391
  *
46950
47392
  * @export
@@ -47017,16 +47459,16 @@ export declare interface JsonApiAutomationOutList {
47017
47459
  export declare interface JsonApiAutomationOutRelationships {
47018
47460
  /**
47019
47461
  *
47020
- * @type {JsonApiAutomationOutRelationshipsNotificationChannel}
47462
+ * @type {JsonApiAutomationInRelationshipsNotificationChannel}
47021
47463
  * @memberof JsonApiAutomationOutRelationships
47022
47464
  */
47023
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
47465
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
47024
47466
  /**
47025
47467
  *
47026
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
47468
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
47027
47469
  * @memberof JsonApiAutomationOutRelationships
47028
47470
  */
47029
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
47471
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47030
47472
  /**
47031
47473
  *
47032
47474
  * @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
@@ -47041,58 +47483,16 @@ export declare interface JsonApiAutomationOutRelationships {
47041
47483
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
47042
47484
  /**
47043
47485
  *
47044
- * @type {JsonApiAutomationOutRelationshipsExportDefinitions}
47486
+ * @type {JsonApiAutomationInRelationshipsExportDefinitions}
47045
47487
  * @memberof JsonApiAutomationOutRelationships
47046
47488
  */
47047
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
47489
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
47048
47490
  /**
47049
47491
  *
47050
- * @type {JsonApiAutomationOutRelationshipsRecipients}
47492
+ * @type {JsonApiAutomationInRelationshipsRecipients}
47051
47493
  * @memberof JsonApiAutomationOutRelationships
47052
47494
  */
47053
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
47054
- }
47055
-
47056
- /**
47057
- *
47058
- * @export
47059
- * @interface JsonApiAutomationOutRelationshipsExportDefinitions
47060
- */
47061
- export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
47062
- /**
47063
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47064
- * @type {Array<JsonApiExportDefinitionLinkage>}
47065
- * @memberof JsonApiAutomationOutRelationshipsExportDefinitions
47066
- */
47067
- data: Array<JsonApiExportDefinitionLinkage>;
47068
- }
47069
-
47070
- /**
47071
- *
47072
- * @export
47073
- * @interface JsonApiAutomationOutRelationshipsNotificationChannel
47074
- */
47075
- export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
47076
- /**
47077
- *
47078
- * @type {JsonApiNotificationChannelToOneLinkage}
47079
- * @memberof JsonApiAutomationOutRelationshipsNotificationChannel
47080
- */
47081
- data: JsonApiNotificationChannelToOneLinkage | null;
47082
- }
47083
-
47084
- /**
47085
- *
47086
- * @export
47087
- * @interface JsonApiAutomationOutRelationshipsRecipients
47088
- */
47089
- export declare interface JsonApiAutomationOutRelationshipsRecipients {
47090
- /**
47091
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
47092
- * @type {Array<JsonApiUserLinkage>}
47093
- * @memberof JsonApiAutomationOutRelationshipsRecipients
47094
- */
47095
- data: Array<JsonApiUserLinkage>;
47495
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
47096
47496
  }
47097
47497
 
47098
47498
  export declare const JsonApiAutomationOutTypeEnum: {
@@ -47878,10 +48278,30 @@ export declare interface JsonApiCustomApplicationSettingIn {
47878
48278
  id: string;
47879
48279
  /**
47880
48280
  *
47881
- * @type {JsonApiCustomApplicationSettingOutAttributes}
48281
+ * @type {JsonApiCustomApplicationSettingInAttributes}
47882
48282
  * @memberof JsonApiCustomApplicationSettingIn
47883
48283
  */
47884
- attributes: JsonApiCustomApplicationSettingOutAttributes;
48284
+ attributes: JsonApiCustomApplicationSettingInAttributes;
48285
+ }
48286
+
48287
+ /**
48288
+ *
48289
+ * @export
48290
+ * @interface JsonApiCustomApplicationSettingInAttributes
48291
+ */
48292
+ export declare interface JsonApiCustomApplicationSettingInAttributes {
48293
+ /**
48294
+ *
48295
+ * @type {string}
48296
+ * @memberof JsonApiCustomApplicationSettingInAttributes
48297
+ */
48298
+ applicationName: string;
48299
+ /**
48300
+ * Free-form JSON content. Maximum supported length is 15000 characters.
48301
+ * @type {object}
48302
+ * @memberof JsonApiCustomApplicationSettingInAttributes
48303
+ */
48304
+ content: object;
47885
48305
  }
47886
48306
 
47887
48307
  /**
@@ -47930,30 +48350,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
47930
48350
  meta?: JsonApiVisualizationObjectOutMeta;
47931
48351
  /**
47932
48352
  *
47933
- * @type {JsonApiCustomApplicationSettingOutAttributes}
48353
+ * @type {JsonApiCustomApplicationSettingInAttributes}
47934
48354
  * @memberof JsonApiCustomApplicationSettingOut
47935
48355
  */
47936
- attributes: JsonApiCustomApplicationSettingOutAttributes;
47937
- }
47938
-
47939
- /**
47940
- *
47941
- * @export
47942
- * @interface JsonApiCustomApplicationSettingOutAttributes
47943
- */
47944
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
47945
- /**
47946
- *
47947
- * @type {string}
47948
- * @memberof JsonApiCustomApplicationSettingOutAttributes
47949
- */
47950
- applicationName: string;
47951
- /**
47952
- * Free-form JSON content. Maximum supported length is 15000 characters.
47953
- * @type {object}
47954
- * @memberof JsonApiCustomApplicationSettingOutAttributes
47955
- */
47956
- content: object;
48356
+ attributes: JsonApiCustomApplicationSettingInAttributes;
47957
48357
  }
47958
48358
 
47959
48359
  /**
@@ -48034,10 +48434,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
48034
48434
  meta?: JsonApiVisualizationObjectOutMeta;
48035
48435
  /**
48036
48436
  *
48037
- * @type {JsonApiCustomApplicationSettingOutAttributes}
48437
+ * @type {JsonApiCustomApplicationSettingInAttributes}
48038
48438
  * @memberof JsonApiCustomApplicationSettingOutWithLinks
48039
48439
  */
48040
- attributes: JsonApiCustomApplicationSettingOutAttributes;
48440
+ attributes: JsonApiCustomApplicationSettingInAttributes;
48041
48441
  /**
48042
48442
  *
48043
48443
  * @type {ObjectLinks}
@@ -48138,10 +48538,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
48138
48538
  id?: string;
48139
48539
  /**
48140
48540
  *
48141
- * @type {JsonApiCustomApplicationSettingOutAttributes}
48541
+ * @type {JsonApiCustomApplicationSettingInAttributes}
48142
48542
  * @memberof JsonApiCustomApplicationSettingPostOptionalId
48143
48543
  */
48144
- attributes: JsonApiCustomApplicationSettingOutAttributes;
48544
+ attributes: JsonApiCustomApplicationSettingInAttributes;
48145
48545
  }
48146
48546
 
48147
48547
  /**
@@ -48184,10 +48584,48 @@ export declare interface JsonApiDashboardPluginIn {
48184
48584
  id: string;
48185
48585
  /**
48186
48586
  *
48187
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
48587
+ * @type {JsonApiDashboardPluginInAttributes}
48188
48588
  * @memberof JsonApiDashboardPluginIn
48189
48589
  */
48190
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
48590
+ attributes?: JsonApiDashboardPluginInAttributes;
48591
+ }
48592
+
48593
+ /**
48594
+ *
48595
+ * @export
48596
+ * @interface JsonApiDashboardPluginInAttributes
48597
+ */
48598
+ export declare interface JsonApiDashboardPluginInAttributes {
48599
+ /**
48600
+ *
48601
+ * @type {string}
48602
+ * @memberof JsonApiDashboardPluginInAttributes
48603
+ */
48604
+ title?: string;
48605
+ /**
48606
+ *
48607
+ * @type {string}
48608
+ * @memberof JsonApiDashboardPluginInAttributes
48609
+ */
48610
+ description?: string;
48611
+ /**
48612
+ *
48613
+ * @type {Array<string>}
48614
+ * @memberof JsonApiDashboardPluginInAttributes
48615
+ */
48616
+ tags?: Array<string>;
48617
+ /**
48618
+ *
48619
+ * @type {boolean}
48620
+ * @memberof JsonApiDashboardPluginInAttributes
48621
+ */
48622
+ areRelationsValid?: boolean;
48623
+ /**
48624
+ * Free-form JSON content. Maximum supported length is 250000 characters.
48625
+ * @type {object}
48626
+ * @memberof JsonApiDashboardPluginInAttributes
48627
+ */
48628
+ content?: object;
48191
48629
  }
48192
48630
 
48193
48631
  /**
@@ -48478,10 +48916,10 @@ export declare interface JsonApiDashboardPluginPatch {
48478
48916
  id: string;
48479
48917
  /**
48480
48918
  *
48481
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
48919
+ * @type {JsonApiDashboardPluginInAttributes}
48482
48920
  * @memberof JsonApiDashboardPluginPatch
48483
48921
  */
48484
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
48922
+ attributes?: JsonApiDashboardPluginInAttributes;
48485
48923
  }
48486
48924
 
48487
48925
  /**
@@ -48524,48 +48962,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
48524
48962
  id?: string;
48525
48963
  /**
48526
48964
  *
48527
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
48965
+ * @type {JsonApiDashboardPluginInAttributes}
48528
48966
  * @memberof JsonApiDashboardPluginPostOptionalId
48529
48967
  */
48530
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
48531
- }
48532
-
48533
- /**
48534
- *
48535
- * @export
48536
- * @interface JsonApiDashboardPluginPostOptionalIdAttributes
48537
- */
48538
- export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
48539
- /**
48540
- *
48541
- * @type {string}
48542
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48543
- */
48544
- title?: string;
48545
- /**
48546
- *
48547
- * @type {string}
48548
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48549
- */
48550
- description?: string;
48551
- /**
48552
- *
48553
- * @type {Array<string>}
48554
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48555
- */
48556
- tags?: Array<string>;
48557
- /**
48558
- *
48559
- * @type {boolean}
48560
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48561
- */
48562
- areRelationsValid?: boolean;
48563
- /**
48564
- * Free-form JSON content. Maximum supported length is 250000 characters.
48565
- * @type {object}
48566
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
48567
- */
48568
- content?: object;
48968
+ attributes?: JsonApiDashboardPluginInAttributes;
48569
48969
  }
48570
48970
 
48571
48971
  /**
@@ -49157,6 +49557,7 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
49157
49557
  readonly MYSQL: "MYSQL";
49158
49558
  readonly MARIADB: "MARIADB";
49159
49559
  readonly ORACLE: "ORACLE";
49560
+ readonly PINOT: "PINOT";
49160
49561
  readonly SINGLESTORE: "SINGLESTORE";
49161
49562
  readonly MOTHERDUCK: "MOTHERDUCK";
49162
49563
  readonly FLEXCONNECT: "FLEXCONNECT";
@@ -49422,6 +49823,7 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
49422
49823
  readonly MYSQL: "MYSQL";
49423
49824
  readonly MARIADB: "MARIADB";
49424
49825
  readonly ORACLE: "ORACLE";
49826
+ readonly PINOT: "PINOT";
49425
49827
  readonly SINGLESTORE: "SINGLESTORE";
49426
49828
  readonly MOTHERDUCK: "MOTHERDUCK";
49427
49829
  readonly FLEXCONNECT: "FLEXCONNECT";
@@ -49608,6 +50010,7 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
49608
50010
  readonly MYSQL: "MYSQL";
49609
50011
  readonly MARIADB: "MARIADB";
49610
50012
  readonly ORACLE: "ORACLE";
50013
+ readonly PINOT: "PINOT";
49611
50014
  readonly SINGLESTORE: "SINGLESTORE";
49612
50015
  readonly MOTHERDUCK: "MOTHERDUCK";
49613
50016
  readonly FLEXCONNECT: "FLEXCONNECT";
@@ -49852,6 +50255,7 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
49852
50255
  readonly MYSQL: "MYSQL";
49853
50256
  readonly MARIADB: "MARIADB";
49854
50257
  readonly ORACLE: "ORACLE";
50258
+ readonly PINOT: "PINOT";
49855
50259
  readonly SINGLESTORE: "SINGLESTORE";
49856
50260
  readonly MOTHERDUCK: "MOTHERDUCK";
49857
50261
  readonly FLEXCONNECT: "FLEXCONNECT";
@@ -50037,16 +50441,54 @@ export declare interface JsonApiExportDefinitionIn {
50037
50441
  id: string;
50038
50442
  /**
50039
50443
  *
50040
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
50444
+ * @type {JsonApiExportDefinitionInAttributes}
50041
50445
  * @memberof JsonApiExportDefinitionIn
50042
50446
  */
50043
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
50447
+ attributes?: JsonApiExportDefinitionInAttributes;
50044
50448
  /**
50045
50449
  *
50046
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
50450
+ * @type {JsonApiExportDefinitionInRelationships}
50047
50451
  * @memberof JsonApiExportDefinitionIn
50048
50452
  */
50049
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
50453
+ relationships?: JsonApiExportDefinitionInRelationships;
50454
+ }
50455
+
50456
+ /**
50457
+ *
50458
+ * @export
50459
+ * @interface JsonApiExportDefinitionInAttributes
50460
+ */
50461
+ export declare interface JsonApiExportDefinitionInAttributes {
50462
+ /**
50463
+ *
50464
+ * @type {string}
50465
+ * @memberof JsonApiExportDefinitionInAttributes
50466
+ */
50467
+ title?: string;
50468
+ /**
50469
+ *
50470
+ * @type {string}
50471
+ * @memberof JsonApiExportDefinitionInAttributes
50472
+ */
50473
+ description?: string;
50474
+ /**
50475
+ *
50476
+ * @type {Array<string>}
50477
+ * @memberof JsonApiExportDefinitionInAttributes
50478
+ */
50479
+ tags?: Array<string>;
50480
+ /**
50481
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
50482
+ * @type {VisualExportRequest | TabularExportRequest}
50483
+ * @memberof JsonApiExportDefinitionInAttributes
50484
+ */
50485
+ requestPayload?: VisualExportRequest | TabularExportRequest;
50486
+ /**
50487
+ *
50488
+ * @type {boolean}
50489
+ * @memberof JsonApiExportDefinitionInAttributes
50490
+ */
50491
+ areRelationsValid?: boolean;
50050
50492
  }
50051
50493
 
50052
50494
  /**
@@ -50063,6 +50505,26 @@ export declare interface JsonApiExportDefinitionInDocument {
50063
50505
  data: JsonApiExportDefinitionIn;
50064
50506
  }
50065
50507
 
50508
+ /**
50509
+ *
50510
+ * @export
50511
+ * @interface JsonApiExportDefinitionInRelationships
50512
+ */
50513
+ export declare interface JsonApiExportDefinitionInRelationships {
50514
+ /**
50515
+ *
50516
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
50517
+ * @memberof JsonApiExportDefinitionInRelationships
50518
+ */
50519
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
50520
+ /**
50521
+ *
50522
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
50523
+ * @memberof JsonApiExportDefinitionInRelationships
50524
+ */
50525
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
50526
+ }
50527
+
50066
50528
  export declare const JsonApiExportDefinitionInTypeEnum: {
50067
50529
  readonly EXPORT_DEFINITION: "exportDefinition";
50068
50530
  };
@@ -50261,10 +50723,10 @@ export declare interface JsonApiExportDefinitionOutRelationships {
50261
50723
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
50262
50724
  /**
50263
50725
  *
50264
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
50726
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
50265
50727
  * @memberof JsonApiExportDefinitionOutRelationships
50266
50728
  */
50267
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50729
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
50268
50730
  /**
50269
50731
  *
50270
50732
  * @type {JsonApiExportDefinitionOutRelationshipsAutomation}
@@ -50285,20 +50747,6 @@ export declare interface JsonApiExportDefinitionOutRelationships {
50285
50747
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
50286
50748
  }
50287
50749
 
50288
- /**
50289
- *
50290
- * @export
50291
- * @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
50292
- */
50293
- export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
50294
- /**
50295
- *
50296
- * @type {JsonApiAnalyticalDashboardToOneLinkage}
50297
- * @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
50298
- */
50299
- data: JsonApiAnalyticalDashboardToOneLinkage | null;
50300
- }
50301
-
50302
50750
  /**
50303
50751
  *
50304
50752
  * @export
@@ -50403,16 +50851,16 @@ export declare interface JsonApiExportDefinitionPatch {
50403
50851
  id: string;
50404
50852
  /**
50405
50853
  *
50406
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
50854
+ * @type {JsonApiExportDefinitionInAttributes}
50407
50855
  * @memberof JsonApiExportDefinitionPatch
50408
50856
  */
50409
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
50857
+ attributes?: JsonApiExportDefinitionInAttributes;
50410
50858
  /**
50411
50859
  *
50412
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
50860
+ * @type {JsonApiExportDefinitionInRelationships}
50413
50861
  * @memberof JsonApiExportDefinitionPatch
50414
50862
  */
50415
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
50863
+ relationships?: JsonApiExportDefinitionInRelationships;
50416
50864
  }
50417
50865
 
50418
50866
  /**
@@ -50455,54 +50903,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
50455
50903
  id?: string;
50456
50904
  /**
50457
50905
  *
50458
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
50906
+ * @type {JsonApiExportDefinitionInAttributes}
50459
50907
  * @memberof JsonApiExportDefinitionPostOptionalId
50460
50908
  */
50461
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
50909
+ attributes?: JsonApiExportDefinitionInAttributes;
50462
50910
  /**
50463
50911
  *
50464
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
50912
+ * @type {JsonApiExportDefinitionInRelationships}
50465
50913
  * @memberof JsonApiExportDefinitionPostOptionalId
50466
50914
  */
50467
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
50468
- }
50469
-
50470
- /**
50471
- *
50472
- * @export
50473
- * @interface JsonApiExportDefinitionPostOptionalIdAttributes
50474
- */
50475
- export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
50476
- /**
50477
- *
50478
- * @type {string}
50479
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50480
- */
50481
- title?: string;
50482
- /**
50483
- *
50484
- * @type {string}
50485
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50486
- */
50487
- description?: string;
50488
- /**
50489
- *
50490
- * @type {Array<string>}
50491
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50492
- */
50493
- tags?: Array<string>;
50494
- /**
50495
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
50496
- * @type {VisualExportRequest | TabularExportRequest}
50497
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50498
- */
50499
- requestPayload?: VisualExportRequest | TabularExportRequest;
50500
- /**
50501
- *
50502
- * @type {boolean}
50503
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
50504
- */
50505
- areRelationsValid?: boolean;
50915
+ relationships?: JsonApiExportDefinitionInRelationships;
50506
50916
  }
50507
50917
 
50508
50918
  /**
@@ -50519,26 +50929,6 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
50519
50929
  data: JsonApiExportDefinitionPostOptionalId;
50520
50930
  }
50521
50931
 
50522
- /**
50523
- *
50524
- * @export
50525
- * @interface JsonApiExportDefinitionPostOptionalIdRelationships
50526
- */
50527
- export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
50528
- /**
50529
- *
50530
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
50531
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
50532
- */
50533
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
50534
- /**
50535
- *
50536
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
50537
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
50538
- */
50539
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
50540
- }
50541
-
50542
50932
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
50543
50933
  readonly EXPORT_DEFINITION: "exportDefinition";
50544
50934
  };
@@ -51191,10 +51581,10 @@ export declare interface JsonApiFilterContextIn {
51191
51581
  id: string;
51192
51582
  /**
51193
51583
  *
51194
- * @type {JsonApiFilterContextOutAttributes}
51584
+ * @type {JsonApiAnalyticalDashboardInAttributes}
51195
51585
  * @memberof JsonApiFilterContextIn
51196
51586
  */
51197
- attributes: JsonApiFilterContextOutAttributes;
51587
+ attributes: JsonApiAnalyticalDashboardInAttributes;
51198
51588
  }
51199
51589
 
51200
51590
  /**
@@ -51269,10 +51659,10 @@ export declare interface JsonApiFilterContextOut {
51269
51659
  meta?: JsonApiVisualizationObjectOutMeta;
51270
51660
  /**
51271
51661
  *
51272
- * @type {JsonApiFilterContextOutAttributes}
51662
+ * @type {JsonApiAnalyticalDashboardInAttributes}
51273
51663
  * @memberof JsonApiFilterContextOut
51274
51664
  */
51275
- attributes: JsonApiFilterContextOutAttributes;
51665
+ attributes: JsonApiAnalyticalDashboardInAttributes;
51276
51666
  /**
51277
51667
  *
51278
51668
  * @type {JsonApiFilterContextOutRelationships}
@@ -51281,44 +51671,6 @@ export declare interface JsonApiFilterContextOut {
51281
51671
  relationships?: JsonApiFilterContextOutRelationships;
51282
51672
  }
51283
51673
 
51284
- /**
51285
- *
51286
- * @export
51287
- * @interface JsonApiFilterContextOutAttributes
51288
- */
51289
- export declare interface JsonApiFilterContextOutAttributes {
51290
- /**
51291
- *
51292
- * @type {string}
51293
- * @memberof JsonApiFilterContextOutAttributes
51294
- */
51295
- title?: string;
51296
- /**
51297
- *
51298
- * @type {string}
51299
- * @memberof JsonApiFilterContextOutAttributes
51300
- */
51301
- description?: string;
51302
- /**
51303
- *
51304
- * @type {Array<string>}
51305
- * @memberof JsonApiFilterContextOutAttributes
51306
- */
51307
- tags?: Array<string>;
51308
- /**
51309
- *
51310
- * @type {boolean}
51311
- * @memberof JsonApiFilterContextOutAttributes
51312
- */
51313
- areRelationsValid?: boolean;
51314
- /**
51315
- * Free-form JSON content. Maximum supported length is 250000 characters.
51316
- * @type {object}
51317
- * @memberof JsonApiFilterContextOutAttributes
51318
- */
51319
- content: object;
51320
- }
51321
-
51322
51674
  /**
51323
51675
  *
51324
51676
  * @export
@@ -51441,10 +51793,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
51441
51793
  meta?: JsonApiVisualizationObjectOutMeta;
51442
51794
  /**
51443
51795
  *
51444
- * @type {JsonApiFilterContextOutAttributes}
51796
+ * @type {JsonApiAnalyticalDashboardInAttributes}
51445
51797
  * @memberof JsonApiFilterContextOutWithLinks
51446
51798
  */
51447
- attributes: JsonApiFilterContextOutAttributes;
51799
+ attributes: JsonApiAnalyticalDashboardInAttributes;
51448
51800
  /**
51449
51801
  *
51450
51802
  * @type {JsonApiFilterContextOutRelationships}
@@ -51531,10 +51883,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
51531
51883
  id?: string;
51532
51884
  /**
51533
51885
  *
51534
- * @type {JsonApiFilterContextOutAttributes}
51886
+ * @type {JsonApiAnalyticalDashboardInAttributes}
51535
51887
  * @memberof JsonApiFilterContextPostOptionalId
51536
51888
  */
51537
- attributes: JsonApiFilterContextOutAttributes;
51889
+ attributes: JsonApiAnalyticalDashboardInAttributes;
51538
51890
  }
51539
51891
 
51540
51892
  /**
@@ -51577,16 +51929,60 @@ export declare interface JsonApiFilterViewIn {
51577
51929
  id: string;
51578
51930
  /**
51579
51931
  *
51580
- * @type {JsonApiFilterViewOutAttributes}
51932
+ * @type {JsonApiFilterViewInAttributes}
51581
51933
  * @memberof JsonApiFilterViewIn
51582
51934
  */
51583
- attributes: JsonApiFilterViewOutAttributes;
51935
+ attributes: JsonApiFilterViewInAttributes;
51584
51936
  /**
51585
51937
  *
51586
- * @type {JsonApiFilterViewOutRelationships}
51938
+ * @type {JsonApiFilterViewInRelationships}
51587
51939
  * @memberof JsonApiFilterViewIn
51588
51940
  */
51589
- relationships?: JsonApiFilterViewOutRelationships;
51941
+ relationships?: JsonApiFilterViewInRelationships;
51942
+ }
51943
+
51944
+ /**
51945
+ *
51946
+ * @export
51947
+ * @interface JsonApiFilterViewInAttributes
51948
+ */
51949
+ export declare interface JsonApiFilterViewInAttributes {
51950
+ /**
51951
+ *
51952
+ * @type {string}
51953
+ * @memberof JsonApiFilterViewInAttributes
51954
+ */
51955
+ title: string;
51956
+ /**
51957
+ *
51958
+ * @type {string}
51959
+ * @memberof JsonApiFilterViewInAttributes
51960
+ */
51961
+ description?: string;
51962
+ /**
51963
+ *
51964
+ * @type {Array<string>}
51965
+ * @memberof JsonApiFilterViewInAttributes
51966
+ */
51967
+ tags?: Array<string>;
51968
+ /**
51969
+ *
51970
+ * @type {boolean}
51971
+ * @memberof JsonApiFilterViewInAttributes
51972
+ */
51973
+ areRelationsValid?: boolean;
51974
+ /**
51975
+ * Indicator whether the filter view should by applied by default.
51976
+ * @type {boolean}
51977
+ * @memberof JsonApiFilterViewInAttributes
51978
+ */
51979
+ isDefault?: boolean;
51980
+ /**
51981
+ * The respective filter context.
51982
+ * @type {object}
51983
+ * @memberof JsonApiFilterViewInAttributes
51984
+ */
51985
+ content: object;
51590
51986
  }
51591
51987
 
51592
51988
  /**
@@ -51603,6 +51999,40 @@ export declare interface JsonApiFilterViewInDocument {
51603
51999
  data: JsonApiFilterViewIn;
51604
52000
  }
51605
52001
 
52002
+ /**
52003
+ *
52004
+ * @export
52005
+ * @interface JsonApiFilterViewInRelationships
52006
+ */
52007
+ export declare interface JsonApiFilterViewInRelationships {
52008
+ /**
52009
+ *
52010
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
52011
+ * @memberof JsonApiFilterViewInRelationships
52012
+ */
52013
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
52014
+ /**
52015
+ *
52016
+ * @type {JsonApiFilterViewInRelationshipsUser}
52017
+ * @memberof JsonApiFilterViewInRelationships
52018
+ */
52019
+ user?: JsonApiFilterViewInRelationshipsUser;
52020
+ }
52021
+
52022
+ /**
52023
+ *
52024
+ * @export
52025
+ * @interface JsonApiFilterViewInRelationshipsUser
52026
+ */
52027
+ export declare interface JsonApiFilterViewInRelationshipsUser {
52028
+ /**
52029
+ *
52030
+ * @type {JsonApiUserToOneLinkage}
52031
+ * @memberof JsonApiFilterViewInRelationshipsUser
52032
+ */
52033
+ data: JsonApiUserToOneLinkage | null;
52034
+ }
52035
+
51606
52036
  export declare const JsonApiFilterViewInTypeEnum: {
51607
52037
  readonly FILTER_VIEW: "filterView";
51608
52038
  };
@@ -51629,60 +52059,16 @@ export declare interface JsonApiFilterViewOut {
51629
52059
  id: string;
51630
52060
  /**
51631
52061
  *
51632
- * @type {JsonApiFilterViewOutAttributes}
52062
+ * @type {JsonApiFilterViewInAttributes}
51633
52063
  * @memberof JsonApiFilterViewOut
51634
52064
  */
51635
- attributes: JsonApiFilterViewOutAttributes;
52065
+ attributes: JsonApiFilterViewInAttributes;
51636
52066
  /**
51637
52067
  *
51638
- * @type {JsonApiFilterViewOutRelationships}
52068
+ * @type {JsonApiFilterViewInRelationships}
51639
52069
  * @memberof JsonApiFilterViewOut
51640
52070
  */
51641
- relationships?: JsonApiFilterViewOutRelationships;
51642
- }
51643
-
51644
- /**
51645
- *
51646
- * @export
51647
- * @interface JsonApiFilterViewOutAttributes
51648
- */
51649
- export declare interface JsonApiFilterViewOutAttributes {
51650
- /**
51651
- *
51652
- * @type {string}
51653
- * @memberof JsonApiFilterViewOutAttributes
51654
- */
51655
- title: string;
51656
- /**
51657
- *
51658
- * @type {string}
51659
- * @memberof JsonApiFilterViewOutAttributes
51660
- */
51661
- description?: string;
51662
- /**
51663
- *
51664
- * @type {Array<string>}
51665
- * @memberof JsonApiFilterViewOutAttributes
51666
- */
51667
- tags?: Array<string>;
51668
- /**
51669
- *
51670
- * @type {boolean}
51671
- * @memberof JsonApiFilterViewOutAttributes
51672
- */
51673
- areRelationsValid?: boolean;
51674
- /**
51675
- * Indicator whether the filter view should by applied by default.
51676
- * @type {boolean}
51677
- * @memberof JsonApiFilterViewOutAttributes
51678
- */
51679
- isDefault?: boolean;
51680
- /**
51681
- * The respective filter context.
51682
- * @type {object}
51683
- * @memberof JsonApiFilterViewOutAttributes
51684
- */
51685
- content: object;
52071
+ relationships?: JsonApiFilterViewInRelationships;
51686
52072
  }
51687
52073
 
51688
52074
  /**
@@ -51749,26 +52135,6 @@ export declare interface JsonApiFilterViewOutList {
51749
52135
  included?: Array<JsonApiFilterViewOutIncludes>;
51750
52136
  }
51751
52137
 
51752
- /**
51753
- *
51754
- * @export
51755
- * @interface JsonApiFilterViewOutRelationships
51756
- */
51757
- export declare interface JsonApiFilterViewOutRelationships {
51758
- /**
51759
- *
51760
- * @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
51761
- * @memberof JsonApiFilterViewOutRelationships
51762
- */
51763
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
51764
- /**
51765
- *
51766
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
51767
- * @memberof JsonApiFilterViewOutRelationships
51768
- */
51769
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
51770
- }
51771
-
51772
52138
  export declare const JsonApiFilterViewOutTypeEnum: {
51773
52139
  readonly FILTER_VIEW: "filterView";
51774
52140
  };
@@ -51795,16 +52161,16 @@ export declare interface JsonApiFilterViewOutWithLinks {
51795
52161
  id: string;
51796
52162
  /**
51797
52163
  *
51798
- * @type {JsonApiFilterViewOutAttributes}
52164
+ * @type {JsonApiFilterViewInAttributes}
51799
52165
  * @memberof JsonApiFilterViewOutWithLinks
51800
52166
  */
51801
- attributes: JsonApiFilterViewOutAttributes;
52167
+ attributes: JsonApiFilterViewInAttributes;
51802
52168
  /**
51803
52169
  *
51804
- * @type {JsonApiFilterViewOutRelationships}
52170
+ * @type {JsonApiFilterViewInRelationships}
51805
52171
  * @memberof JsonApiFilterViewOutWithLinks
51806
52172
  */
51807
- relationships?: JsonApiFilterViewOutRelationships;
52173
+ relationships?: JsonApiFilterViewInRelationships;
51808
52174
  /**
51809
52175
  *
51810
52176
  * @type {ObjectLinks}
@@ -51845,10 +52211,10 @@ export declare interface JsonApiFilterViewPatch {
51845
52211
  attributes: JsonApiFilterViewPatchAttributes;
51846
52212
  /**
51847
52213
  *
51848
- * @type {JsonApiFilterViewOutRelationships}
52214
+ * @type {JsonApiFilterViewInRelationships}
51849
52215
  * @memberof JsonApiFilterViewPatch
51850
52216
  */
51851
- relationships?: JsonApiFilterViewOutRelationships;
52217
+ relationships?: JsonApiFilterViewInRelationships;
51852
52218
  }
51853
52219
 
51854
52220
  /**
@@ -53158,10 +53524,48 @@ export declare interface JsonApiMetricIn {
53158
53524
  id: string;
53159
53525
  /**
53160
53526
  *
53161
- * @type {JsonApiMetricPostOptionalIdAttributes}
53527
+ * @type {JsonApiMetricInAttributes}
53162
53528
  * @memberof JsonApiMetricIn
53163
53529
  */
53164
- attributes: JsonApiMetricPostOptionalIdAttributes;
53530
+ attributes: JsonApiMetricInAttributes;
53531
+ }
53532
+
53533
+ /**
53534
+ *
53535
+ * @export
53536
+ * @interface JsonApiMetricInAttributes
53537
+ */
53538
+ export declare interface JsonApiMetricInAttributes {
53539
+ /**
53540
+ *
53541
+ * @type {string}
53542
+ * @memberof JsonApiMetricInAttributes
53543
+ */
53544
+ title?: string;
53545
+ /**
53546
+ *
53547
+ * @type {string}
53548
+ * @memberof JsonApiMetricInAttributes
53549
+ */
53550
+ description?: string;
53551
+ /**
53552
+ *
53553
+ * @type {Array<string>}
53554
+ * @memberof JsonApiMetricInAttributes
53555
+ */
53556
+ tags?: Array<string>;
53557
+ /**
53558
+ *
53559
+ * @type {boolean}
53560
+ * @memberof JsonApiMetricInAttributes
53561
+ */
53562
+ areRelationsValid?: boolean;
53563
+ /**
53564
+ *
53565
+ * @type {JsonApiMetricOutAttributesContent}
53566
+ * @memberof JsonApiMetricInAttributes
53567
+ */
53568
+ content: JsonApiMetricOutAttributesContent;
53165
53569
  }
53166
53570
 
53167
53571
  /**
@@ -53542,48 +53946,10 @@ export declare interface JsonApiMetricPostOptionalId {
53542
53946
  id?: string;
53543
53947
  /**
53544
53948
  *
53545
- * @type {JsonApiMetricPostOptionalIdAttributes}
53949
+ * @type {JsonApiMetricInAttributes}
53546
53950
  * @memberof JsonApiMetricPostOptionalId
53547
53951
  */
53548
- attributes: JsonApiMetricPostOptionalIdAttributes;
53549
- }
53550
-
53551
- /**
53552
- *
53553
- * @export
53554
- * @interface JsonApiMetricPostOptionalIdAttributes
53555
- */
53556
- export declare interface JsonApiMetricPostOptionalIdAttributes {
53557
- /**
53558
- *
53559
- * @type {string}
53560
- * @memberof JsonApiMetricPostOptionalIdAttributes
53561
- */
53562
- title?: string;
53563
- /**
53564
- *
53565
- * @type {string}
53566
- * @memberof JsonApiMetricPostOptionalIdAttributes
53567
- */
53568
- description?: string;
53569
- /**
53570
- *
53571
- * @type {Array<string>}
53572
- * @memberof JsonApiMetricPostOptionalIdAttributes
53573
- */
53574
- tags?: Array<string>;
53575
- /**
53576
- *
53577
- * @type {boolean}
53578
- * @memberof JsonApiMetricPostOptionalIdAttributes
53579
- */
53580
- areRelationsValid?: boolean;
53581
- /**
53582
- *
53583
- * @type {JsonApiMetricOutAttributesContent}
53584
- * @memberof JsonApiMetricPostOptionalIdAttributes
53585
- */
53586
- content: JsonApiMetricOutAttributesContent;
53952
+ attributes: JsonApiMetricInAttributes;
53587
53953
  }
53588
53954
 
53589
53955
  /**
@@ -53626,12 +53992,85 @@ export declare interface JsonApiNotificationChannelIn {
53626
53992
  id: string;
53627
53993
  /**
53628
53994
  *
53629
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
53995
+ * @type {JsonApiNotificationChannelInAttributes}
53630
53996
  * @memberof JsonApiNotificationChannelIn
53631
53997
  */
53632
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
53998
+ attributes?: JsonApiNotificationChannelInAttributes;
53999
+ }
54000
+
54001
+ /**
54002
+ *
54003
+ * @export
54004
+ * @interface JsonApiNotificationChannelInAttributes
54005
+ */
54006
+ export declare interface JsonApiNotificationChannelInAttributes {
54007
+ /**
54008
+ *
54009
+ * @type {string}
54010
+ * @memberof JsonApiNotificationChannelInAttributes
54011
+ */
54012
+ name?: string | null;
54013
+ /**
54014
+ *
54015
+ * @type {string}
54016
+ * @memberof JsonApiNotificationChannelInAttributes
54017
+ */
54018
+ description?: string | null;
54019
+ /**
54020
+ * The destination where the notifications are to be sent.
54021
+ * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
54022
+ * @memberof JsonApiNotificationChannelInAttributes
54023
+ */
54024
+ destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
54025
+ /**
54026
+ * 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}.
54027
+ * @type {string}
54028
+ * @memberof JsonApiNotificationChannelInAttributes
54029
+ */
54030
+ customDashboardUrl?: string;
54031
+ /**
54032
+ * 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
54033
+ * @type {string}
54034
+ * @memberof JsonApiNotificationChannelInAttributes
54035
+ */
54036
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
54037
+ /**
54038
+ * 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
54039
+ * @type {string}
54040
+ * @memberof JsonApiNotificationChannelInAttributes
54041
+ */
54042
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
54043
+ /**
54044
+ * 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
54045
+ * @type {string}
54046
+ * @memberof JsonApiNotificationChannelInAttributes
54047
+ */
54048
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
53633
54049
  }
53634
54050
 
54051
+ export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
54052
+ readonly CREATOR: "CREATOR";
54053
+ readonly INTERNAL: "INTERNAL";
54054
+ readonly EXTERNAL: "EXTERNAL";
54055
+ };
54056
+
54057
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
54058
+
54059
+ export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
54060
+ readonly HIDDEN: "HIDDEN";
54061
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
54062
+ readonly ALL: "ALL";
54063
+ };
54064
+
54065
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
54066
+
54067
+ export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
54068
+ readonly DISABLED: "DISABLED";
54069
+ readonly ENABLED: "ENABLED";
54070
+ };
54071
+
54072
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
54073
+
53635
54074
  /**
53636
54075
  *
53637
54076
  * @export
@@ -53902,10 +54341,10 @@ export declare interface JsonApiNotificationChannelPatch {
53902
54341
  id: string;
53903
54342
  /**
53904
54343
  *
53905
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
54344
+ * @type {JsonApiNotificationChannelInAttributes}
53906
54345
  * @memberof JsonApiNotificationChannelPatch
53907
54346
  */
53908
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
54347
+ attributes?: JsonApiNotificationChannelInAttributes;
53909
54348
  }
53910
54349
 
53911
54350
  /**
@@ -53948,85 +54387,12 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
53948
54387
  id?: string;
53949
54388
  /**
53950
54389
  *
53951
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
54390
+ * @type {JsonApiNotificationChannelInAttributes}
53952
54391
  * @memberof JsonApiNotificationChannelPostOptionalId
53953
54392
  */
53954
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
54393
+ attributes?: JsonApiNotificationChannelInAttributes;
53955
54394
  }
53956
54395
 
53957
- /**
53958
- *
53959
- * @export
53960
- * @interface JsonApiNotificationChannelPostOptionalIdAttributes
53961
- */
53962
- export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
53963
- /**
53964
- *
53965
- * @type {string}
53966
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53967
- */
53968
- name?: string | null;
53969
- /**
53970
- *
53971
- * @type {string}
53972
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53973
- */
53974
- description?: string | null;
53975
- /**
53976
- * The destination where the notifications are to be sent.
53977
- * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
53978
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53979
- */
53980
- destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
53981
- /**
53982
- * 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}.
53983
- * @type {string}
53984
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53985
- */
53986
- customDashboardUrl?: string;
53987
- /**
53988
- * 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
53989
- * @type {string}
53990
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53991
- */
53992
- dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
53993
- /**
53994
- * 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
53995
- * @type {string}
53996
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
53997
- */
53998
- allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
53999
- /**
54000
- * 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
54001
- * @type {string}
54002
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
54003
- */
54004
- inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
54005
- }
54006
-
54007
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
54008
- readonly CREATOR: "CREATOR";
54009
- readonly INTERNAL: "INTERNAL";
54010
- readonly EXTERNAL: "EXTERNAL";
54011
- };
54012
-
54013
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
54014
-
54015
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
54016
- readonly HIDDEN: "HIDDEN";
54017
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
54018
- readonly ALL: "ALL";
54019
- };
54020
-
54021
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
54022
-
54023
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
54024
- readonly DISABLED: "DISABLED";
54025
- readonly ENABLED: "ENABLED";
54026
- };
54027
-
54028
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
54029
-
54030
54396
  /**
54031
54397
  *
54032
54398
  * @export
@@ -54309,44 +54675,16 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
54309
54675
  export declare interface JsonApiOrganizationOutRelationships {
54310
54676
  /**
54311
54677
  *
54312
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
54678
+ * @type {JsonApiFilterViewInRelationshipsUser}
54313
54679
  * @memberof JsonApiOrganizationOutRelationships
54314
54680
  */
54315
- bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
54681
+ bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
54316
54682
  /**
54317
54683
  *
54318
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
54684
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
54319
54685
  * @memberof JsonApiOrganizationOutRelationships
54320
54686
  */
54321
- bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
54322
- }
54323
-
54324
- /**
54325
- *
54326
- * @export
54327
- * @interface JsonApiOrganizationOutRelationshipsBootstrapUser
54328
- */
54329
- export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
54330
- /**
54331
- *
54332
- * @type {JsonApiUserToOneLinkage}
54333
- * @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
54334
- */
54335
- data: JsonApiUserToOneLinkage | null;
54336
- }
54337
-
54338
- /**
54339
- *
54340
- * @export
54341
- * @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
54342
- */
54343
- export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
54344
- /**
54345
- *
54346
- * @type {JsonApiUserGroupToOneLinkage}
54347
- * @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
54348
- */
54349
- data: JsonApiUserGroupToOneLinkage | null;
54687
+ bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
54350
54688
  }
54351
54689
 
54352
54690
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -54504,10 +54842,10 @@ export declare interface JsonApiOrganizationSettingIn {
54504
54842
  id: string;
54505
54843
  /**
54506
54844
  *
54507
- * @type {JsonApiUserSettingOutAttributes}
54845
+ * @type {JsonApiOrganizationSettingOutAttributes}
54508
54846
  * @memberof JsonApiOrganizationSettingIn
54509
54847
  */
54510
- attributes?: JsonApiUserSettingOutAttributes;
54848
+ attributes?: JsonApiOrganizationSettingOutAttributes;
54511
54849
  }
54512
54850
 
54513
54851
  /**
@@ -54550,12 +54888,62 @@ export declare interface JsonApiOrganizationSettingOut {
54550
54888
  id: string;
54551
54889
  /**
54552
54890
  *
54553
- * @type {JsonApiUserSettingOutAttributes}
54891
+ * @type {JsonApiOrganizationSettingOutAttributes}
54554
54892
  * @memberof JsonApiOrganizationSettingOut
54555
54893
  */
54556
- attributes?: JsonApiUserSettingOutAttributes;
54894
+ attributes?: JsonApiOrganizationSettingOutAttributes;
54557
54895
  }
54558
54896
 
54897
+ /**
54898
+ *
54899
+ * @export
54900
+ * @interface JsonApiOrganizationSettingOutAttributes
54901
+ */
54902
+ export declare interface JsonApiOrganizationSettingOutAttributes {
54903
+ /**
54904
+ * Free-form JSON content. Maximum supported length is 15000 characters.
54905
+ * @type {object}
54906
+ * @memberof JsonApiOrganizationSettingOutAttributes
54907
+ */
54908
+ content?: object;
54909
+ /**
54910
+ *
54911
+ * @type {string}
54912
+ * @memberof JsonApiOrganizationSettingOutAttributes
54913
+ */
54914
+ type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
54915
+ }
54916
+
54917
+ export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
54918
+ readonly TIMEZONE: "TIMEZONE";
54919
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
54920
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
54921
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
54922
+ readonly WHITE_LABELING: "WHITE_LABELING";
54923
+ readonly LOCALE: "LOCALE";
54924
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
54925
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
54926
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
54927
+ readonly WEEK_START: "WEEK_START";
54928
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
54929
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
54930
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
54931
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
54932
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
54933
+ readonly ALERT: "ALERT";
54934
+ readonly SEPARATORS: "SEPARATORS";
54935
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
54936
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
54937
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
54938
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
54939
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
54940
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
54941
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
54942
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
54943
+ };
54944
+
54945
+ export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
54946
+
54559
54947
  /**
54560
54948
  *
54561
54949
  * @export
@@ -54628,10 +55016,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
54628
55016
  id: string;
54629
55017
  /**
54630
55018
  *
54631
- * @type {JsonApiUserSettingOutAttributes}
55019
+ * @type {JsonApiOrganizationSettingOutAttributes}
54632
55020
  * @memberof JsonApiOrganizationSettingOutWithLinks
54633
55021
  */
54634
- attributes?: JsonApiUserSettingOutAttributes;
55022
+ attributes?: JsonApiOrganizationSettingOutAttributes;
54635
55023
  /**
54636
55024
  *
54637
55025
  * @type {ObjectLinks}
@@ -54666,10 +55054,10 @@ export declare interface JsonApiOrganizationSettingPatch {
54666
55054
  id: string;
54667
55055
  /**
54668
55056
  *
54669
- * @type {JsonApiUserSettingOutAttributes}
55057
+ * @type {JsonApiOrganizationSettingOutAttributes}
54670
55058
  * @memberof JsonApiOrganizationSettingPatch
54671
55059
  */
54672
- attributes?: JsonApiUserSettingOutAttributes;
55060
+ attributes?: JsonApiOrganizationSettingOutAttributes;
54673
55061
  }
54674
55062
 
54675
55063
  /**
@@ -54920,114 +55308,148 @@ export declare interface JsonApiUserDataFilterIn {
54920
55308
  id: string;
54921
55309
  /**
54922
55310
  *
54923
- * @type {JsonApiUserDataFilterOutAttributes}
55311
+ * @type {JsonApiUserDataFilterInAttributes}
54924
55312
  * @memberof JsonApiUserDataFilterIn
54925
55313
  */
54926
- attributes: JsonApiUserDataFilterOutAttributes;
55314
+ attributes: JsonApiUserDataFilterInAttributes;
54927
55315
  /**
54928
55316
  *
54929
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
55317
+ * @type {JsonApiUserDataFilterInRelationships}
54930
55318
  * @memberof JsonApiUserDataFilterIn
54931
55319
  */
54932
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
54933
- }
54934
-
54935
- /**
54936
- *
54937
- * @export
54938
- * @interface JsonApiUserDataFilterInDocument
54939
- */
54940
- export declare interface JsonApiUserDataFilterInDocument {
54941
- /**
54942
- *
54943
- * @type {JsonApiUserDataFilterIn}
54944
- * @memberof JsonApiUserDataFilterInDocument
54945
- */
54946
- data: JsonApiUserDataFilterIn;
54947
- }
54948
-
54949
- export declare const JsonApiUserDataFilterInTypeEnum: {
54950
- readonly USER_DATA_FILTER: "userDataFilter";
54951
- };
54952
-
54953
- export declare type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
54954
-
54955
- /**
54956
- * JSON:API representation of userDataFilter entity.
54957
- * @export
54958
- * @interface JsonApiUserDataFilterOut
54959
- */
54960
- export declare interface JsonApiUserDataFilterOut {
54961
- /**
54962
- * Object type
54963
- * @type {string}
54964
- * @memberof JsonApiUserDataFilterOut
54965
- */
54966
- type: JsonApiUserDataFilterOutTypeEnum;
54967
- /**
54968
- * API identifier of an object
54969
- * @type {string}
54970
- * @memberof JsonApiUserDataFilterOut
54971
- */
54972
- id: string;
54973
- /**
54974
- *
54975
- * @type {JsonApiVisualizationObjectOutMeta}
54976
- * @memberof JsonApiUserDataFilterOut
54977
- */
54978
- meta?: JsonApiVisualizationObjectOutMeta;
54979
- /**
54980
- *
54981
- * @type {JsonApiUserDataFilterOutAttributes}
54982
- * @memberof JsonApiUserDataFilterOut
54983
- */
54984
- attributes: JsonApiUserDataFilterOutAttributes;
54985
- /**
54986
- *
54987
- * @type {JsonApiUserDataFilterOutRelationships}
54988
- * @memberof JsonApiUserDataFilterOut
54989
- */
54990
- relationships?: JsonApiUserDataFilterOutRelationships;
55320
+ relationships?: JsonApiUserDataFilterInRelationships;
54991
55321
  }
54992
55322
 
54993
55323
  /**
54994
55324
  *
54995
55325
  * @export
54996
- * @interface JsonApiUserDataFilterOutAttributes
55326
+ * @interface JsonApiUserDataFilterInAttributes
54997
55327
  */
54998
- export declare interface JsonApiUserDataFilterOutAttributes {
55328
+ export declare interface JsonApiUserDataFilterInAttributes {
54999
55329
  /**
55000
55330
  *
55001
55331
  * @type {string}
55002
- * @memberof JsonApiUserDataFilterOutAttributes
55332
+ * @memberof JsonApiUserDataFilterInAttributes
55003
55333
  */
55004
55334
  title?: string;
55005
55335
  /**
55006
55336
  *
55007
55337
  * @type {string}
55008
- * @memberof JsonApiUserDataFilterOutAttributes
55338
+ * @memberof JsonApiUserDataFilterInAttributes
55009
55339
  */
55010
55340
  description?: string;
55011
55341
  /**
55012
55342
  *
55013
55343
  * @type {Array<string>}
55014
- * @memberof JsonApiUserDataFilterOutAttributes
55344
+ * @memberof JsonApiUserDataFilterInAttributes
55015
55345
  */
55016
55346
  tags?: Array<string>;
55017
55347
  /**
55018
55348
  *
55019
55349
  * @type {boolean}
55020
- * @memberof JsonApiUserDataFilterOutAttributes
55350
+ * @memberof JsonApiUserDataFilterInAttributes
55021
55351
  */
55022
55352
  areRelationsValid?: boolean;
55023
55353
  /**
55024
55354
  *
55025
55355
  * @type {string}
55026
- * @memberof JsonApiUserDataFilterOutAttributes
55356
+ * @memberof JsonApiUserDataFilterInAttributes
55027
55357
  */
55028
55358
  maql: string;
55029
55359
  }
55030
55360
 
55361
+ /**
55362
+ *
55363
+ * @export
55364
+ * @interface JsonApiUserDataFilterInDocument
55365
+ */
55366
+ export declare interface JsonApiUserDataFilterInDocument {
55367
+ /**
55368
+ *
55369
+ * @type {JsonApiUserDataFilterIn}
55370
+ * @memberof JsonApiUserDataFilterInDocument
55371
+ */
55372
+ data: JsonApiUserDataFilterIn;
55373
+ }
55374
+
55375
+ /**
55376
+ *
55377
+ * @export
55378
+ * @interface JsonApiUserDataFilterInRelationships
55379
+ */
55380
+ export declare interface JsonApiUserDataFilterInRelationships {
55381
+ /**
55382
+ *
55383
+ * @type {JsonApiFilterViewInRelationshipsUser}
55384
+ * @memberof JsonApiUserDataFilterInRelationships
55385
+ */
55386
+ user?: JsonApiFilterViewInRelationshipsUser;
55387
+ /**
55388
+ *
55389
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
55390
+ * @memberof JsonApiUserDataFilterInRelationships
55391
+ */
55392
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
55393
+ }
55394
+
55395
+ /**
55396
+ *
55397
+ * @export
55398
+ * @interface JsonApiUserDataFilterInRelationshipsUserGroup
55399
+ */
55400
+ export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
55401
+ /**
55402
+ *
55403
+ * @type {JsonApiUserGroupToOneLinkage}
55404
+ * @memberof JsonApiUserDataFilterInRelationshipsUserGroup
55405
+ */
55406
+ data: JsonApiUserGroupToOneLinkage | null;
55407
+ }
55408
+
55409
+ export declare const JsonApiUserDataFilterInTypeEnum: {
55410
+ readonly USER_DATA_FILTER: "userDataFilter";
55411
+ };
55412
+
55413
+ export declare type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
55414
+
55415
+ /**
55416
+ * JSON:API representation of userDataFilter entity.
55417
+ * @export
55418
+ * @interface JsonApiUserDataFilterOut
55419
+ */
55420
+ export declare interface JsonApiUserDataFilterOut {
55421
+ /**
55422
+ * Object type
55423
+ * @type {string}
55424
+ * @memberof JsonApiUserDataFilterOut
55425
+ */
55426
+ type: JsonApiUserDataFilterOutTypeEnum;
55427
+ /**
55428
+ * API identifier of an object
55429
+ * @type {string}
55430
+ * @memberof JsonApiUserDataFilterOut
55431
+ */
55432
+ id: string;
55433
+ /**
55434
+ *
55435
+ * @type {JsonApiVisualizationObjectOutMeta}
55436
+ * @memberof JsonApiUserDataFilterOut
55437
+ */
55438
+ meta?: JsonApiVisualizationObjectOutMeta;
55439
+ /**
55440
+ *
55441
+ * @type {JsonApiUserDataFilterInAttributes}
55442
+ * @memberof JsonApiUserDataFilterOut
55443
+ */
55444
+ attributes: JsonApiUserDataFilterInAttributes;
55445
+ /**
55446
+ *
55447
+ * @type {JsonApiUserDataFilterOutRelationships}
55448
+ * @memberof JsonApiUserDataFilterOut
55449
+ */
55450
+ relationships?: JsonApiUserDataFilterOutRelationships;
55451
+ }
55452
+
55031
55453
  /**
55032
55454
  *
55033
55455
  * @export
@@ -55100,16 +55522,16 @@ export declare interface JsonApiUserDataFilterOutList {
55100
55522
  export declare interface JsonApiUserDataFilterOutRelationships {
55101
55523
  /**
55102
55524
  *
55103
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
55525
+ * @type {JsonApiFilterViewInRelationshipsUser}
55104
55526
  * @memberof JsonApiUserDataFilterOutRelationships
55105
55527
  */
55106
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
55528
+ user?: JsonApiFilterViewInRelationshipsUser;
55107
55529
  /**
55108
55530
  *
55109
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
55531
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
55110
55532
  * @memberof JsonApiUserDataFilterOutRelationships
55111
55533
  */
55112
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
55534
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
55113
55535
  /**
55114
55536
  *
55115
55537
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -55174,10 +55596,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
55174
55596
  meta?: JsonApiVisualizationObjectOutMeta;
55175
55597
  /**
55176
55598
  *
55177
- * @type {JsonApiUserDataFilterOutAttributes}
55599
+ * @type {JsonApiUserDataFilterInAttributes}
55178
55600
  * @memberof JsonApiUserDataFilterOutWithLinks
55179
55601
  */
55180
- attributes: JsonApiUserDataFilterOutAttributes;
55602
+ attributes: JsonApiUserDataFilterInAttributes;
55181
55603
  /**
55182
55604
  *
55183
55605
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -55224,10 +55646,10 @@ export declare interface JsonApiUserDataFilterPatch {
55224
55646
  attributes: JsonApiUserDataFilterPatchAttributes;
55225
55647
  /**
55226
55648
  *
55227
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
55649
+ * @type {JsonApiUserDataFilterInRelationships}
55228
55650
  * @memberof JsonApiUserDataFilterPatch
55229
55651
  */
55230
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
55652
+ relationships?: JsonApiUserDataFilterInRelationships;
55231
55653
  }
55232
55654
 
55233
55655
  /**
@@ -55308,16 +55730,16 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
55308
55730
  id?: string;
55309
55731
  /**
55310
55732
  *
55311
- * @type {JsonApiUserDataFilterOutAttributes}
55733
+ * @type {JsonApiUserDataFilterInAttributes}
55312
55734
  * @memberof JsonApiUserDataFilterPostOptionalId
55313
55735
  */
55314
- attributes: JsonApiUserDataFilterOutAttributes;
55736
+ attributes: JsonApiUserDataFilterInAttributes;
55315
55737
  /**
55316
55738
  *
55317
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
55739
+ * @type {JsonApiUserDataFilterInRelationships}
55318
55740
  * @memberof JsonApiUserDataFilterPostOptionalId
55319
55741
  */
55320
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
55742
+ relationships?: JsonApiUserDataFilterInRelationships;
55321
55743
  }
55322
55744
 
55323
55745
  /**
@@ -55334,26 +55756,6 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
55334
55756
  data: JsonApiUserDataFilterPostOptionalId;
55335
55757
  }
55336
55758
 
55337
- /**
55338
- *
55339
- * @export
55340
- * @interface JsonApiUserDataFilterPostOptionalIdRelationships
55341
- */
55342
- export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
55343
- /**
55344
- *
55345
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
55346
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
55347
- */
55348
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
55349
- /**
55350
- *
55351
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
55352
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
55353
- */
55354
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
55355
- }
55356
-
55357
55759
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
55358
55760
  readonly USER_DATA_FILTER: "userDataFilter";
55359
55761
  };
@@ -55550,10 +55952,24 @@ export declare interface JsonApiUserGroupOutList {
55550
55952
  export declare interface JsonApiUserGroupOutRelationships {
55551
55953
  /**
55552
55954
  *
55553
- * @type {JsonApiUserOutRelationshipsUserGroups}
55955
+ * @type {JsonApiUserGroupOutRelationshipsParents}
55554
55956
  * @memberof JsonApiUserGroupOutRelationships
55555
55957
  */
55556
- parents?: JsonApiUserOutRelationshipsUserGroups;
55958
+ parents?: JsonApiUserGroupOutRelationshipsParents;
55959
+ }
55960
+
55961
+ /**
55962
+ *
55963
+ * @export
55964
+ * @interface JsonApiUserGroupOutRelationshipsParents
55965
+ */
55966
+ export declare interface JsonApiUserGroupOutRelationshipsParents {
55967
+ /**
55968
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
55969
+ * @type {Array<JsonApiUserGroupLinkage>}
55970
+ * @memberof JsonApiUserGroupOutRelationshipsParents
55971
+ */
55972
+ data: Array<JsonApiUserGroupLinkage>;
55557
55973
  }
55558
55974
 
55559
55975
  export declare const JsonApiUserGroupOutTypeEnum: {
@@ -56048,24 +56464,10 @@ export declare interface JsonApiUserOutList {
56048
56464
  export declare interface JsonApiUserOutRelationships {
56049
56465
  /**
56050
56466
  *
56051
- * @type {JsonApiUserOutRelationshipsUserGroups}
56467
+ * @type {JsonApiUserGroupOutRelationshipsParents}
56052
56468
  * @memberof JsonApiUserOutRelationships
56053
56469
  */
56054
- userGroups?: JsonApiUserOutRelationshipsUserGroups;
56055
- }
56056
-
56057
- /**
56058
- *
56059
- * @export
56060
- * @interface JsonApiUserOutRelationshipsUserGroups
56061
- */
56062
- export declare interface JsonApiUserOutRelationshipsUserGroups {
56063
- /**
56064
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
56065
- * @type {Array<JsonApiUserGroupLinkage>}
56066
- * @memberof JsonApiUserOutRelationshipsUserGroups
56067
- */
56068
- data: Array<JsonApiUserGroupLinkage>;
56470
+ userGroups?: JsonApiUserGroupOutRelationshipsParents;
56069
56471
  }
56070
56472
 
56071
56473
  export declare const JsonApiUserOutTypeEnum: {
@@ -56190,10 +56592,10 @@ export declare interface JsonApiUserSettingIn {
56190
56592
  id: string;
56191
56593
  /**
56192
56594
  *
56193
- * @type {JsonApiUserSettingOutAttributes}
56595
+ * @type {JsonApiOrganizationSettingOutAttributes}
56194
56596
  * @memberof JsonApiUserSettingIn
56195
56597
  */
56196
- attributes?: JsonApiUserSettingOutAttributes;
56598
+ attributes?: JsonApiOrganizationSettingOutAttributes;
56197
56599
  }
56198
56600
 
56199
56601
  /**
@@ -56236,59 +56638,12 @@ export declare interface JsonApiUserSettingOut {
56236
56638
  id: string;
56237
56639
  /**
56238
56640
  *
56239
- * @type {JsonApiUserSettingOutAttributes}
56641
+ * @type {JsonApiOrganizationSettingOutAttributes}
56240
56642
  * @memberof JsonApiUserSettingOut
56241
56643
  */
56242
- attributes?: JsonApiUserSettingOutAttributes;
56644
+ attributes?: JsonApiOrganizationSettingOutAttributes;
56243
56645
  }
56244
56646
 
56245
- /**
56246
- *
56247
- * @export
56248
- * @interface JsonApiUserSettingOutAttributes
56249
- */
56250
- export declare interface JsonApiUserSettingOutAttributes {
56251
- /**
56252
- * Free-form JSON content. Maximum supported length is 15000 characters.
56253
- * @type {object}
56254
- * @memberof JsonApiUserSettingOutAttributes
56255
- */
56256
- content?: object;
56257
- /**
56258
- *
56259
- * @type {string}
56260
- * @memberof JsonApiUserSettingOutAttributes
56261
- */
56262
- type?: JsonApiUserSettingOutAttributesTypeEnum;
56263
- }
56264
-
56265
- export declare const JsonApiUserSettingOutAttributesTypeEnum: {
56266
- readonly TIMEZONE: "TIMEZONE";
56267
- readonly ACTIVE_THEME: "ACTIVE_THEME";
56268
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
56269
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
56270
- readonly WHITE_LABELING: "WHITE_LABELING";
56271
- readonly LOCALE: "LOCALE";
56272
- readonly METADATA_LOCALE: "METADATA_LOCALE";
56273
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
56274
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
56275
- readonly WEEK_START: "WEEK_START";
56276
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
56277
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
56278
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
56279
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
56280
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
56281
- readonly ALERT: "ALERT";
56282
- readonly SEPARATORS: "SEPARATORS";
56283
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
56284
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
56285
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
56286
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
56287
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
56288
- };
56289
-
56290
- export declare type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
56291
-
56292
56647
  /**
56293
56648
  *
56294
56649
  * @export
@@ -56361,10 +56716,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
56361
56716
  id: string;
56362
56717
  /**
56363
56718
  *
56364
- * @type {JsonApiUserSettingOutAttributes}
56719
+ * @type {JsonApiOrganizationSettingOutAttributes}
56365
56720
  * @memberof JsonApiUserSettingOutWithLinks
56366
56721
  */
56367
- attributes?: JsonApiUserSettingOutAttributes;
56722
+ attributes?: JsonApiOrganizationSettingOutAttributes;
56368
56723
  /**
56369
56724
  *
56370
56725
  * @type {ObjectLinks}
@@ -56406,10 +56761,10 @@ export declare interface JsonApiVisualizationObjectIn {
56406
56761
  id: string;
56407
56762
  /**
56408
56763
  *
56409
- * @type {JsonApiFilterContextOutAttributes}
56764
+ * @type {JsonApiAnalyticalDashboardInAttributes}
56410
56765
  * @memberof JsonApiVisualizationObjectIn
56411
56766
  */
56412
- attributes: JsonApiFilterContextOutAttributes;
56767
+ attributes: JsonApiAnalyticalDashboardInAttributes;
56413
56768
  }
56414
56769
 
56415
56770
  /**
@@ -56901,10 +57256,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
56901
57256
  id?: string;
56902
57257
  /**
56903
57258
  *
56904
- * @type {JsonApiFilterContextOutAttributes}
57259
+ * @type {JsonApiAnalyticalDashboardInAttributes}
56905
57260
  * @memberof JsonApiVisualizationObjectPostOptionalId
56906
57261
  */
56907
- attributes: JsonApiFilterContextOutAttributes;
57262
+ attributes: JsonApiAnalyticalDashboardInAttributes;
56908
57263
  }
56909
57264
 
56910
57265
  /**
@@ -57290,16 +57645,42 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
57290
57645
  id: string;
57291
57646
  /**
57292
57647
  *
57293
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
57648
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
57294
57649
  * @memberof JsonApiWorkspaceDataFilterSettingIn
57295
57650
  */
57296
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
57651
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
57297
57652
  /**
57298
57653
  *
57299
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
57654
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
57300
57655
  * @memberof JsonApiWorkspaceDataFilterSettingIn
57301
57656
  */
57302
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57657
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
57658
+ }
57659
+
57660
+ /**
57661
+ *
57662
+ * @export
57663
+ * @interface JsonApiWorkspaceDataFilterSettingInAttributes
57664
+ */
57665
+ export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
57666
+ /**
57667
+ *
57668
+ * @type {string}
57669
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
57670
+ */
57671
+ title?: string;
57672
+ /**
57673
+ *
57674
+ * @type {string}
57675
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
57676
+ */
57677
+ description?: string;
57678
+ /**
57679
+ *
57680
+ * @type {Array<string>}
57681
+ * @memberof JsonApiWorkspaceDataFilterSettingInAttributes
57682
+ */
57683
+ filterValues?: Array<string>;
57303
57684
  }
57304
57685
 
57305
57686
  /**
@@ -57316,6 +57697,34 @@ export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
57316
57697
  data: JsonApiWorkspaceDataFilterSettingIn;
57317
57698
  }
57318
57699
 
57700
+ /**
57701
+ *
57702
+ * @export
57703
+ * @interface JsonApiWorkspaceDataFilterSettingInRelationships
57704
+ */
57705
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
57706
+ /**
57707
+ *
57708
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
57709
+ * @memberof JsonApiWorkspaceDataFilterSettingInRelationships
57710
+ */
57711
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
57712
+ }
57713
+
57714
+ /**
57715
+ *
57716
+ * @export
57717
+ * @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
57718
+ */
57719
+ export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
57720
+ /**
57721
+ *
57722
+ * @type {JsonApiWorkspaceDataFilterToOneLinkage}
57723
+ * @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
57724
+ */
57725
+ data: JsonApiWorkspaceDataFilterToOneLinkage | null;
57726
+ }
57727
+
57319
57728
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
57320
57729
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
57321
57730
  };
@@ -57374,42 +57783,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
57374
57783
  meta?: JsonApiVisualizationObjectOutMeta;
57375
57784
  /**
57376
57785
  *
57377
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
57786
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
57378
57787
  * @memberof JsonApiWorkspaceDataFilterSettingOut
57379
57788
  */
57380
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
57789
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
57381
57790
  /**
57382
57791
  *
57383
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
57792
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
57384
57793
  * @memberof JsonApiWorkspaceDataFilterSettingOut
57385
57794
  */
57386
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57387
- }
57388
-
57389
- /**
57390
- *
57391
- * @export
57392
- * @interface JsonApiWorkspaceDataFilterSettingOutAttributes
57393
- */
57394
- export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
57395
- /**
57396
- *
57397
- * @type {string}
57398
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57399
- */
57400
- title?: string;
57401
- /**
57402
- *
57403
- * @type {string}
57404
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57405
- */
57406
- description?: string;
57407
- /**
57408
- *
57409
- * @type {Array<string>}
57410
- * @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
57411
- */
57412
- filterValues?: Array<string>;
57795
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
57413
57796
  }
57414
57797
 
57415
57798
  /**
@@ -57470,34 +57853,6 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
57470
57853
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
57471
57854
  }
57472
57855
 
57473
- /**
57474
- *
57475
- * @export
57476
- * @interface JsonApiWorkspaceDataFilterSettingOutRelationships
57477
- */
57478
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
57479
- /**
57480
- *
57481
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
57482
- * @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
57483
- */
57484
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
57485
- }
57486
-
57487
- /**
57488
- *
57489
- * @export
57490
- * @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
57491
- */
57492
- export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
57493
- /**
57494
- *
57495
- * @type {JsonApiWorkspaceDataFilterToOneLinkage}
57496
- * @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
57497
- */
57498
- data: JsonApiWorkspaceDataFilterToOneLinkage | null;
57499
- }
57500
-
57501
57856
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
57502
57857
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
57503
57858
  };
@@ -57530,16 +57885,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
57530
57885
  meta?: JsonApiVisualizationObjectOutMeta;
57531
57886
  /**
57532
57887
  *
57533
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
57888
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
57534
57889
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
57535
57890
  */
57536
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
57891
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
57537
57892
  /**
57538
57893
  *
57539
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
57894
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
57540
57895
  * @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
57541
57896
  */
57542
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57897
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
57543
57898
  /**
57544
57899
  *
57545
57900
  * @type {ObjectLinks}
@@ -57574,16 +57929,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
57574
57929
  id: string;
57575
57930
  /**
57576
57931
  *
57577
- * @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
57932
+ * @type {JsonApiWorkspaceDataFilterSettingInAttributes}
57578
57933
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
57579
57934
  */
57580
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
57935
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
57581
57936
  /**
57582
57937
  *
57583
- * @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
57938
+ * @type {JsonApiWorkspaceDataFilterSettingInRelationships}
57584
57939
  * @memberof JsonApiWorkspaceDataFilterSettingPatch
57585
57940
  */
57586
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
57941
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
57587
57942
  }
57588
57943
 
57589
57944
  /**
@@ -58114,10 +58469,10 @@ export declare interface JsonApiWorkspaceSettingIn {
58114
58469
  id: string;
58115
58470
  /**
58116
58471
  *
58117
- * @type {JsonApiUserSettingOutAttributes}
58472
+ * @type {JsonApiOrganizationSettingOutAttributes}
58118
58473
  * @memberof JsonApiWorkspaceSettingIn
58119
58474
  */
58120
- attributes?: JsonApiUserSettingOutAttributes;
58475
+ attributes?: JsonApiOrganizationSettingOutAttributes;
58121
58476
  }
58122
58477
 
58123
58478
  /**
@@ -58166,10 +58521,10 @@ export declare interface JsonApiWorkspaceSettingOut {
58166
58521
  meta?: JsonApiVisualizationObjectOutMeta;
58167
58522
  /**
58168
58523
  *
58169
- * @type {JsonApiUserSettingOutAttributes}
58524
+ * @type {JsonApiOrganizationSettingOutAttributes}
58170
58525
  * @memberof JsonApiWorkspaceSettingOut
58171
58526
  */
58172
- attributes?: JsonApiUserSettingOutAttributes;
58527
+ attributes?: JsonApiOrganizationSettingOutAttributes;
58173
58528
  }
58174
58529
 
58175
58530
  /**
@@ -58250,10 +58605,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
58250
58605
  meta?: JsonApiVisualizationObjectOutMeta;
58251
58606
  /**
58252
58607
  *
58253
- * @type {JsonApiUserSettingOutAttributes}
58608
+ * @type {JsonApiOrganizationSettingOutAttributes}
58254
58609
  * @memberof JsonApiWorkspaceSettingOutWithLinks
58255
58610
  */
58256
- attributes?: JsonApiUserSettingOutAttributes;
58611
+ attributes?: JsonApiOrganizationSettingOutAttributes;
58257
58612
  /**
58258
58613
  *
58259
58614
  * @type {ObjectLinks}
@@ -58288,10 +58643,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
58288
58643
  id: string;
58289
58644
  /**
58290
58645
  *
58291
- * @type {JsonApiUserSettingOutAttributes}
58646
+ * @type {JsonApiOrganizationSettingOutAttributes}
58292
58647
  * @memberof JsonApiWorkspaceSettingPatch
58293
58648
  */
58294
- attributes?: JsonApiUserSettingOutAttributes;
58649
+ attributes?: JsonApiOrganizationSettingOutAttributes;
58295
58650
  }
58296
58651
 
58297
58652
  /**
@@ -58334,10 +58689,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
58334
58689
  id?: string;
58335
58690
  /**
58336
58691
  *
58337
- * @type {JsonApiUserSettingOutAttributes}
58692
+ * @type {JsonApiOrganizationSettingOutAttributes}
58338
58693
  * @memberof JsonApiWorkspaceSettingPostOptionalId
58339
58694
  */
58340
- attributes?: JsonApiUserSettingOutAttributes;
58695
+ attributes?: JsonApiOrganizationSettingOutAttributes;
58341
58696
  }
58342
58697
 
58343
58698
  /**
@@ -74899,7 +75254,7 @@ export declare interface RawExportActionsRequest {
74899
75254
  * @type {RawCustomOverride}
74900
75255
  * @memberof RawExportRequest
74901
75256
  */
74902
- customOverride?: RawCustomOverride;
75257
+ customOverride?: AfmExportRawCustomOverride;
74903
75258
  /**
74904
75259
  *
74905
75260
  * @type {ExecutionSettings}
@@ -74916,6 +75271,52 @@ export declare const RawExportActionsRequestFormatEnum: {
74916
75271
 
74917
75272
  export declare type RawExportActionsRequestFormatEnum = typeof RawExportActionsRequestFormatEnum[keyof typeof RawExportActionsRequestFormatEnum];
74918
75273
 
75274
+ /**
75275
+ * Export request object describing the export properties and overrides for raw exports.
75276
+ * @export
75277
+ * @interface RawExportRequest
75278
+ */
75279
+ export declare interface RawExportRequest {
75280
+ /**
75281
+ * Requested resulting file type.
75282
+ * @type {string}
75283
+ * @memberof RawExportRequest
75284
+ */
75285
+ format: RawExportRequestFormatEnum;
75286
+ /**
75287
+ *
75288
+ * @type {AFM}
75289
+ * @memberof RawExportRequest
75290
+ */
75291
+ execution: AFM;
75292
+ /**
75293
+ * Filename of downloaded file without extension.
75294
+ * @type {string}
75295
+ * @memberof RawExportRequest
75296
+ */
75297
+ fileName: string;
75298
+ /**
75299
+ *
75300
+ * @type {RawCustomOverride}
75301
+ * @memberof RawExportRequest
75302
+ */
75303
+ customOverride?: RawCustomOverride;
75304
+ /**
75305
+ *
75306
+ * @type {ExecutionSettings}
75307
+ * @memberof RawExportRequest
75308
+ */
75309
+ executionSettings?: ExecutionSettings;
75310
+ }
75311
+
75312
+ export declare const RawExportRequestFormatEnum: {
75313
+ readonly ARROW_FILE: "ARROW_FILE";
75314
+ readonly ARROW_STREAM: "ARROW_STREAM";
75315
+ readonly CSV: "CSV";
75316
+ };
75317
+
75318
+ export declare type RawExportRequestFormatEnum = typeof RawExportRequestFormatEnum[keyof typeof RawExportRequestFormatEnum];
75319
+
74919
75320
  /**
74920
75321
  * Request to read the manifests of the specified CSV files.
74921
75322
  * @export
@@ -75344,9 +75745,12 @@ export declare const ResolvedSettingTypeEnum: {
75344
75745
  readonly SEPARATORS: "SEPARATORS";
75345
75746
  readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
75346
75747
  readonly JIT_PROVISIONING: "JIT_PROVISIONING";
75748
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
75347
75749
  readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
75348
75750
  readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
75349
75751
  readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
75752
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
75753
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
75350
75754
  };
75351
75755
 
75352
75756
  export declare type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
@@ -75466,7 +75870,7 @@ export declare interface ResultCacheMetadata {
75466
75870
  * @type {AFM}
75467
75871
  * @memberof ResultCacheMetadata
75468
75872
  */
75469
- afm: AFM;
75873
+ afm: AfmModel;
75470
75874
  /**
75471
75875
  *
75472
75876
  * @type {ExecutionResponse}
@@ -76366,6 +76770,12 @@ export declare function setGlobalAuthorizationToken(token: string | undefined):
76366
76770
  * @interface Settings
76367
76771
  */
76368
76772
  export declare interface Settings {
76773
+ /**
76774
+ * Include export info sheet in the exported file. (XLSX)
76775
+ * @type {boolean}
76776
+ * @memberof Settings
76777
+ */
76778
+ exportInfo?: boolean;
76369
76779
  /**
76370
76780
  * Merge equal headers in neighbouring cells. (XLSX)
76371
76781
  * @type {boolean}
@@ -77181,6 +77591,7 @@ export declare const TestDefinitionRequestTypeEnum: {
77181
77591
  readonly MYSQL: "MYSQL";
77182
77592
  readonly MARIADB: "MARIADB";
77183
77593
  readonly ORACLE: "ORACLE";
77594
+ readonly PINOT: "PINOT";
77184
77595
  readonly SINGLESTORE: "SINGLESTORE";
77185
77596
  readonly MOTHERDUCK: "MOTHERDUCK";
77186
77597
  readonly FLEXCONNECT: "FLEXCONNECT";