@gooddata/api-client-tiger 11.41.0-alpha.0 → 11.41.0-alpha.2

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.
@@ -151,6 +151,10 @@ export interface AlertAfm {
151
151
  * Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
152
152
  */
153
153
  'auxMeasures'?: Array<MeasureItem>;
154
+ /**
155
+ * Parameters to be used in the computation.
156
+ */
157
+ 'parameters'?: Array<ParameterItem>;
154
158
  }
155
159
  /**
156
160
  * @type AlertCondition
@@ -2495,6 +2499,10 @@ export interface DeclarativeUser {
2495
2499
  */
2496
2500
  'email'?: string;
2497
2501
  'permissions'?: Array<DeclarativeUserPermission>;
2502
+ /**
2503
+ * Is user system account
2504
+ */
2505
+ 'systemAccount'?: boolean;
2498
2506
  }
2499
2507
  /**
2500
2508
  * User Data Filters serving the filtering of what data users can see in workspaces.
@@ -4090,7 +4098,7 @@ export interface JsonApiAutomationInRelationships {
4090
4098
  'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
4091
4099
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
4092
4100
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
4093
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
4101
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
4094
4102
  }
4095
4103
  /**
4096
4104
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
@@ -4188,7 +4196,7 @@ export interface JsonApiAutomationOutRelationships {
4188
4196
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
4189
4197
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
4190
4198
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
4191
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
4199
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
4192
4200
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
4193
4201
  }
4194
4202
  export interface JsonApiAutomationOutWithLinks {
@@ -4306,9 +4314,16 @@ export interface JsonApiColorPaletteIn {
4306
4314
  * API identifier of an object
4307
4315
  */
4308
4316
  'id': string;
4309
- 'attributes': JsonApiColorPaletteOutAttributes;
4317
+ 'attributes': JsonApiColorPaletteInAttributes;
4310
4318
  }
4311
4319
  export type JsonApiColorPaletteInTypeEnum = 'colorPalette';
4320
+ export interface JsonApiColorPaletteInAttributes {
4321
+ 'name': string;
4322
+ /**
4323
+ * Free-form JSON content. Maximum supported length is 15000 characters.
4324
+ */
4325
+ 'content': object;
4326
+ }
4312
4327
  export interface JsonApiColorPaletteInDocument {
4313
4328
  'data': JsonApiColorPaletteIn;
4314
4329
  }
@@ -4324,16 +4339,9 @@ export interface JsonApiColorPaletteOut {
4324
4339
  * API identifier of an object
4325
4340
  */
4326
4341
  'id': string;
4327
- 'attributes': JsonApiColorPaletteOutAttributes;
4342
+ 'attributes': JsonApiColorPaletteInAttributes;
4328
4343
  }
4329
4344
  export type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
4330
- export interface JsonApiColorPaletteOutAttributes {
4331
- 'name': string;
4332
- /**
4333
- * Free-form JSON content. Maximum supported length is 15000 characters.
4334
- */
4335
- 'content': object;
4336
- }
4337
4345
  export interface JsonApiColorPaletteOutDocument {
4338
4346
  'data': JsonApiColorPaletteOut;
4339
4347
  'links'?: ObjectLinks;
@@ -4355,7 +4363,7 @@ export interface JsonApiColorPaletteOutWithLinks {
4355
4363
  * API identifier of an object
4356
4364
  */
4357
4365
  'id': string;
4358
- 'attributes': JsonApiColorPaletteOutAttributes;
4366
+ 'attributes': JsonApiColorPaletteInAttributes;
4359
4367
  'links'?: ObjectLinks;
4360
4368
  }
4361
4369
  export type JsonApiColorPaletteOutWithLinksTypeEnum = 'colorPalette';
@@ -4396,16 +4404,9 @@ export interface JsonApiCookieSecurityConfigurationIn {
4396
4404
  * API identifier of an object
4397
4405
  */
4398
4406
  'id': string;
4399
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4407
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
4400
4408
  }
4401
4409
  export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
4402
- export interface JsonApiCookieSecurityConfigurationInAttributes {
4403
- 'lastRotation'?: string;
4404
- /**
4405
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4406
- */
4407
- 'rotationInterval'?: string;
4408
- }
4409
4410
  export interface JsonApiCookieSecurityConfigurationInDocument {
4410
4411
  'data': JsonApiCookieSecurityConfigurationIn;
4411
4412
  }
@@ -4421,9 +4422,16 @@ export interface JsonApiCookieSecurityConfigurationOut {
4421
4422
  * API identifier of an object
4422
4423
  */
4423
4424
  'id': string;
4424
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4425
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
4425
4426
  }
4426
4427
  export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
4428
+ export interface JsonApiCookieSecurityConfigurationOutAttributes {
4429
+ 'lastRotation'?: string;
4430
+ /**
4431
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4432
+ */
4433
+ 'rotationInterval'?: string;
4434
+ }
4427
4435
  export interface JsonApiCookieSecurityConfigurationOutDocument {
4428
4436
  'data': JsonApiCookieSecurityConfigurationOut;
4429
4437
  'links'?: ObjectLinks;
@@ -4440,7 +4448,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4440
4448
  * API identifier of an object
4441
4449
  */
4442
4450
  'id': string;
4443
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4451
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
4444
4452
  }
4445
4453
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
4446
4454
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -4730,7 +4738,7 @@ export interface JsonApiCustomUserApplicationSettingIn {
4730
4738
  * API identifier of an object
4731
4739
  */
4732
4740
  'id': string;
4733
- 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4741
+ 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
4734
4742
  }
4735
4743
  export type JsonApiCustomUserApplicationSettingInTypeEnum = 'customUserApplicationSetting';
4736
4744
  export interface JsonApiCustomUserApplicationSettingInDocument {
@@ -4748,9 +4756,20 @@ export interface JsonApiCustomUserApplicationSettingOut {
4748
4756
  * API identifier of an object
4749
4757
  */
4750
4758
  'id': string;
4751
- 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4759
+ 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
4752
4760
  }
4753
4761
  export type JsonApiCustomUserApplicationSettingOutTypeEnum = 'customUserApplicationSetting';
4762
+ export interface JsonApiCustomUserApplicationSettingOutAttributes {
4763
+ 'applicationName': string;
4764
+ /**
4765
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4766
+ */
4767
+ 'content': object;
4768
+ /**
4769
+ * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
4770
+ */
4771
+ 'workspaceId'?: string | null;
4772
+ }
4754
4773
  export interface JsonApiCustomUserApplicationSettingOutDocument {
4755
4774
  'data': JsonApiCustomUserApplicationSettingOut;
4756
4775
  'links'?: ObjectLinks;
@@ -4772,7 +4791,7 @@ export interface JsonApiCustomUserApplicationSettingOutWithLinks {
4772
4791
  * API identifier of an object
4773
4792
  */
4774
4793
  'id': string;
4775
- 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4794
+ 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
4776
4795
  'links'?: ObjectLinks;
4777
4796
  }
4778
4797
  export type JsonApiCustomUserApplicationSettingOutWithLinksTypeEnum = 'customUserApplicationSetting';
@@ -4788,20 +4807,9 @@ export interface JsonApiCustomUserApplicationSettingPostOptionalId {
4788
4807
  * API identifier of an object
4789
4808
  */
4790
4809
  'id'?: string;
4791
- 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4810
+ 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
4792
4811
  }
4793
4812
  export type JsonApiCustomUserApplicationSettingPostOptionalIdTypeEnum = 'customUserApplicationSetting';
4794
- export interface JsonApiCustomUserApplicationSettingPostOptionalIdAttributes {
4795
- 'applicationName': string;
4796
- /**
4797
- * Free-form JSON content. Maximum supported length is 250000 characters.
4798
- */
4799
- 'content': object;
4800
- /**
4801
- * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
4802
- */
4803
- 'workspaceId'?: string | null;
4804
- }
4805
4813
  export interface JsonApiCustomUserApplicationSettingPostOptionalIdDocument {
4806
4814
  'data': JsonApiCustomUserApplicationSettingPostOptionalId;
4807
4815
  }
@@ -5069,7 +5077,7 @@ export interface JsonApiDataSourceInAttributes {
5069
5077
  /**
5070
5078
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5071
5079
  */
5072
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5080
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
5073
5081
  /**
5074
5082
  * Determines how the results coming from a particular datasource should be cached.
5075
5083
  */
@@ -5086,6 +5094,10 @@ export interface JsonApiDataSourceInAttributes {
5086
5094
  export type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
5087
5095
  export type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
5088
5096
  export type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
5097
+ export interface JsonApiDataSourceInAttributesParametersInner {
5098
+ 'name': string;
5099
+ 'value': string;
5100
+ }
5089
5101
  export interface JsonApiDataSourceInDocument {
5090
5102
  'data': JsonApiDataSourceIn;
5091
5103
  }
@@ -5133,11 +5145,11 @@ export interface JsonApiDataSourceOutAttributes {
5133
5145
  /**
5134
5146
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5135
5147
  */
5136
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5148
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
5137
5149
  /**
5138
5150
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
5139
5151
  */
5140
- 'decodedParameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5152
+ 'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
5141
5153
  /**
5142
5154
  * Determines how the results coming from a particular datasource should be cached.
5143
5155
  */
@@ -5159,10 +5171,6 @@ export type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' |
5159
5171
  export type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
5160
5172
  export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
5161
5173
  export type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
5162
- export interface JsonApiDataSourceOutAttributesParametersInner {
5163
- 'name': string;
5164
- 'value': string;
5165
- }
5166
5174
  export interface JsonApiDataSourceOutDocument {
5167
5175
  'data': JsonApiDataSourceOut;
5168
5176
  'links'?: ObjectLinks;
@@ -5252,7 +5260,7 @@ export interface JsonApiDataSourcePatchAttributes {
5252
5260
  /**
5253
5261
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5254
5262
  */
5255
- 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5263
+ 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
5256
5264
  /**
5257
5265
  * Determines how the results coming from a particular datasource should be cached.
5258
5266
  */
@@ -5659,7 +5667,7 @@ export interface JsonApiExportTemplateIn {
5659
5667
  * API identifier of an object
5660
5668
  */
5661
5669
  'id': string;
5662
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
5670
+ 'attributes': JsonApiExportTemplateOutAttributes;
5663
5671
  }
5664
5672
  export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
5665
5673
  export interface JsonApiExportTemplateInDocument {
@@ -5677,9 +5685,42 @@ export interface JsonApiExportTemplateOut {
5677
5685
  * API identifier of an object
5678
5686
  */
5679
5687
  'id': string;
5680
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
5688
+ 'attributes': JsonApiExportTemplateOutAttributes;
5681
5689
  }
5682
5690
  export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
5691
+ export interface JsonApiExportTemplateOutAttributes {
5692
+ /**
5693
+ * User-facing name of the Slides template.
5694
+ */
5695
+ 'name': string;
5696
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5697
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5698
+ }
5699
+ /**
5700
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5701
+ */
5702
+ export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
5703
+ /**
5704
+ * Export types this template applies to.
5705
+ */
5706
+ 'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
5707
+ 'coverSlide'?: CoverSlideTemplate | null;
5708
+ 'introSlide'?: IntroSlideTemplate | null;
5709
+ 'sectionSlide'?: SectionSlideTemplate | null;
5710
+ 'contentSlide'?: ContentSlideTemplate | null;
5711
+ }
5712
+ export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
5713
+ /**
5714
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5715
+ */
5716
+ export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
5717
+ /**
5718
+ * Export types this template applies to.
5719
+ */
5720
+ 'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
5721
+ 'contentSlide'?: ContentSlideTemplate | null;
5722
+ }
5723
+ export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
5683
5724
  export interface JsonApiExportTemplateOutDocument {
5684
5725
  'data': JsonApiExportTemplateOut;
5685
5726
  'links'?: ObjectLinks;
@@ -5701,7 +5742,7 @@ export interface JsonApiExportTemplateOutWithLinks {
5701
5742
  * API identifier of an object
5702
5743
  */
5703
5744
  'id': string;
5704
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
5745
+ 'attributes': JsonApiExportTemplateOutAttributes;
5705
5746
  'links'?: ObjectLinks;
5706
5747
  }
5707
5748
  export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
@@ -5725,8 +5766,8 @@ export interface JsonApiExportTemplatePatchAttributes {
5725
5766
  * User-facing name of the Slides template.
5726
5767
  */
5727
5768
  'name'?: string;
5728
- 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
5729
- 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
5769
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5770
+ 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5730
5771
  }
5731
5772
  export interface JsonApiExportTemplatePatchDocument {
5732
5773
  'data': JsonApiExportTemplatePatch;
@@ -5743,42 +5784,9 @@ export interface JsonApiExportTemplatePostOptionalId {
5743
5784
  * API identifier of an object
5744
5785
  */
5745
5786
  'id'?: string;
5746
- 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
5787
+ 'attributes': JsonApiExportTemplateOutAttributes;
5747
5788
  }
5748
5789
  export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
5749
- export interface JsonApiExportTemplatePostOptionalIdAttributes {
5750
- /**
5751
- * User-facing name of the Slides template.
5752
- */
5753
- 'name': string;
5754
- 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
5755
- 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
5756
- }
5757
- /**
5758
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5759
- */
5760
- export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
5761
- /**
5762
- * Export types this template applies to.
5763
- */
5764
- 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
5765
- 'coverSlide'?: CoverSlideTemplate | null;
5766
- 'introSlide'?: IntroSlideTemplate | null;
5767
- 'sectionSlide'?: SectionSlideTemplate | null;
5768
- 'contentSlide'?: ContentSlideTemplate | null;
5769
- }
5770
- export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
5771
- /**
5772
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5773
- */
5774
- export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
5775
- /**
5776
- * Export types this template applies to.
5777
- */
5778
- 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
5779
- 'contentSlide'?: ContentSlideTemplate | null;
5780
- }
5781
- export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
5782
5790
  export interface JsonApiExportTemplatePostOptionalIdDocument {
5783
5791
  'data': JsonApiExportTemplatePostOptionalId;
5784
5792
  }
@@ -6030,31 +6038,13 @@ export interface JsonApiFilterViewIn {
6030
6038
  * API identifier of an object
6031
6039
  */
6032
6040
  'id': string;
6033
- 'attributes': JsonApiFilterViewInAttributes;
6034
- 'relationships'?: JsonApiFilterViewInRelationships;
6041
+ 'attributes': JsonApiFilterViewOutAttributes;
6042
+ 'relationships'?: JsonApiFilterViewOutRelationships;
6035
6043
  }
6036
6044
  export type JsonApiFilterViewInTypeEnum = 'filterView';
6037
- export interface JsonApiFilterViewInAttributes {
6038
- 'title': string;
6039
- 'description'?: string;
6040
- 'tags'?: Array<string>;
6041
- 'areRelationsValid'?: boolean;
6042
- /**
6043
- * Indicator whether the filter view should by applied by default.
6044
- */
6045
- 'isDefault'?: boolean;
6046
- /**
6047
- * The respective filter context.
6048
- */
6049
- 'content': object;
6050
- }
6051
6045
  export interface JsonApiFilterViewInDocument {
6052
6046
  'data': JsonApiFilterViewIn;
6053
6047
  }
6054
- export interface JsonApiFilterViewInRelationships {
6055
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6056
- 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6057
- }
6058
6048
  /**
6059
6049
  * JSON:API representation of filterView entity.
6060
6050
  */
@@ -6067,10 +6057,24 @@ export interface JsonApiFilterViewOut {
6067
6057
  * API identifier of an object
6068
6058
  */
6069
6059
  'id': string;
6070
- 'attributes': JsonApiFilterViewInAttributes;
6071
- 'relationships'?: JsonApiFilterViewInRelationships;
6060
+ 'attributes': JsonApiFilterViewOutAttributes;
6061
+ 'relationships'?: JsonApiFilterViewOutRelationships;
6072
6062
  }
6073
6063
  export type JsonApiFilterViewOutTypeEnum = 'filterView';
6064
+ export interface JsonApiFilterViewOutAttributes {
6065
+ 'title': string;
6066
+ 'description'?: string;
6067
+ 'tags'?: Array<string>;
6068
+ 'areRelationsValid'?: boolean;
6069
+ /**
6070
+ * Indicator whether the filter view should by applied by default.
6071
+ */
6072
+ 'isDefault'?: boolean;
6073
+ /**
6074
+ * The respective filter context.
6075
+ */
6076
+ 'content': object;
6077
+ }
6074
6078
  export interface JsonApiFilterViewOutDocument {
6075
6079
  'data': JsonApiFilterViewOut;
6076
6080
  'links'?: ObjectLinks;
@@ -6095,6 +6099,10 @@ export interface JsonApiFilterViewOutList {
6095
6099
  */
6096
6100
  'included'?: Array<JsonApiFilterViewOutIncludes>;
6097
6101
  }
6102
+ export interface JsonApiFilterViewOutRelationships {
6103
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6104
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6105
+ }
6098
6106
  export interface JsonApiFilterViewOutWithLinks {
6099
6107
  /**
6100
6108
  * Object type
@@ -6104,8 +6112,8 @@ export interface JsonApiFilterViewOutWithLinks {
6104
6112
  * API identifier of an object
6105
6113
  */
6106
6114
  'id': string;
6107
- 'attributes': JsonApiFilterViewInAttributes;
6108
- 'relationships'?: JsonApiFilterViewInRelationships;
6115
+ 'attributes': JsonApiFilterViewOutAttributes;
6116
+ 'relationships'?: JsonApiFilterViewOutRelationships;
6109
6117
  'links'?: ObjectLinks;
6110
6118
  }
6111
6119
  export type JsonApiFilterViewOutWithLinksTypeEnum = 'filterView';
@@ -6122,7 +6130,7 @@ export interface JsonApiFilterViewPatch {
6122
6130
  */
6123
6131
  'id': string;
6124
6132
  'attributes': JsonApiFilterViewPatchAttributes;
6125
- 'relationships'?: JsonApiFilterViewInRelationships;
6133
+ 'relationships'?: JsonApiFilterViewOutRelationships;
6126
6134
  }
6127
6135
  export type JsonApiFilterViewPatchTypeEnum = 'filterView';
6128
6136
  export interface JsonApiFilterViewPatchAttributes {
@@ -6332,29 +6340,13 @@ export interface JsonApiIpAllowlistPolicyIn {
6332
6340
  * API identifier of an object
6333
6341
  */
6334
6342
  'id': string;
6335
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
6336
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
6343
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
6344
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
6337
6345
  }
6338
6346
  export type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
6339
- export interface JsonApiIpAllowlistPolicyInAttributes {
6340
- /**
6341
- * Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
6342
- */
6343
- 'allowedSources': Array<string> | null;
6344
- }
6345
6347
  export interface JsonApiIpAllowlistPolicyInDocument {
6346
6348
  'data': JsonApiIpAllowlistPolicyIn;
6347
6349
  }
6348
- export interface JsonApiIpAllowlistPolicyInRelationships {
6349
- 'users'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
6350
- 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
6351
- }
6352
- export interface JsonApiIpAllowlistPolicyInRelationshipsUsers {
6353
- /**
6354
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6355
- */
6356
- 'data': Array<JsonApiUserLinkage>;
6357
- }
6358
6350
  /**
6359
6351
  * JSON:API representation of ipAllowlistPolicy entity.
6360
6352
  */
@@ -6367,10 +6359,16 @@ export interface JsonApiIpAllowlistPolicyOut {
6367
6359
  * API identifier of an object
6368
6360
  */
6369
6361
  'id': string;
6370
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
6371
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
6362
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
6363
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
6372
6364
  }
6373
6365
  export type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
6366
+ export interface JsonApiIpAllowlistPolicyOutAttributes {
6367
+ /**
6368
+ * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
6369
+ */
6370
+ 'allowedSources': Array<string> | null;
6371
+ }
6374
6372
  export interface JsonApiIpAllowlistPolicyOutDocument {
6375
6373
  'data': JsonApiIpAllowlistPolicyOut;
6376
6374
  'links'?: ObjectLinks;
@@ -6395,6 +6393,16 @@ export interface JsonApiIpAllowlistPolicyOutList {
6395
6393
  */
6396
6394
  'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
6397
6395
  }
6396
+ export interface JsonApiIpAllowlistPolicyOutRelationships {
6397
+ 'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
6398
+ 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
6399
+ }
6400
+ export interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
6401
+ /**
6402
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6403
+ */
6404
+ 'data': Array<JsonApiUserLinkage>;
6405
+ }
6398
6406
  export interface JsonApiIpAllowlistPolicyOutWithLinks {
6399
6407
  /**
6400
6408
  * Object type
@@ -6404,8 +6412,8 @@ export interface JsonApiIpAllowlistPolicyOutWithLinks {
6404
6412
  * API identifier of an object
6405
6413
  */
6406
6414
  'id': string;
6407
- 'attributes': JsonApiIpAllowlistPolicyInAttributes;
6408
- 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
6415
+ 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
6416
+ 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
6409
6417
  'links'?: ObjectLinks;
6410
6418
  }
6411
6419
  export type JsonApiIpAllowlistPolicyOutWithLinksTypeEnum = 'ipAllowlistPolicy';
@@ -6616,12 +6624,9 @@ export interface JsonApiKnowledgeRecommendationOutList {
6616
6624
  'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
6617
6625
  }
6618
6626
  export interface JsonApiKnowledgeRecommendationOutRelationships {
6619
- 'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
6627
+ 'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
6620
6628
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6621
6629
  }
6622
- export interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
6623
- 'data': JsonApiMetricLinkage | null;
6624
- }
6625
6630
  export interface JsonApiKnowledgeRecommendationOutWithLinks {
6626
6631
  /**
6627
6632
  * Object type
@@ -6808,9 +6813,12 @@ export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
6808
6813
  'data': JsonApiKnowledgeRecommendationPostOptionalId;
6809
6814
  }
6810
6815
  export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
6811
- 'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
6816
+ 'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
6812
6817
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6813
6818
  }
6819
+ export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
6820
+ 'data': JsonApiMetricLinkage | null;
6821
+ }
6814
6822
  /**
6815
6823
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
6816
6824
  */
@@ -7498,7 +7506,7 @@ export type JsonApiNotificationChannelOutTypeEnum = 'notificationChannel';
7498
7506
  export interface JsonApiNotificationChannelOutAttributes {
7499
7507
  'name'?: string | null;
7500
7508
  'description'?: string | null;
7501
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
7509
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
7502
7510
  'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
7503
7511
  /**
7504
7512
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
@@ -7525,6 +7533,11 @@ export type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOO
7525
7533
  export type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7526
7534
  export type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7527
7535
  export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7536
+ /**
7537
+ * @type JsonApiNotificationChannelOutAttributesDestination
7538
+ * The destination where the notifications are to be sent.
7539
+ */
7540
+ export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7528
7541
  export interface JsonApiNotificationChannelOutDocument {
7529
7542
  'data': JsonApiNotificationChannelOut;
7530
7543
  'links'?: ObjectLinks;
@@ -7586,7 +7599,7 @@ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = 'notificationChan
7586
7599
  export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7587
7600
  'name'?: string | null;
7588
7601
  'description'?: string | null;
7589
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
7602
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
7590
7603
  /**
7591
7604
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
7592
7605
  */
@@ -7611,11 +7624,6 @@ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7611
7624
  export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7612
7625
  export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7613
7626
  export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7614
- /**
7615
- * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
7616
- * The destination where the notifications are to be sent.
7617
- */
7618
- export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7619
7627
  export interface JsonApiNotificationChannelPostOptionalIdDocument {
7620
7628
  'data': JsonApiNotificationChannelPostOptionalId;
7621
7629
  }
@@ -7995,7 +8003,7 @@ export interface JsonApiThemeIn {
7995
8003
  * API identifier of an object
7996
8004
  */
7997
8005
  'id': string;
7998
- 'attributes': JsonApiColorPaletteOutAttributes;
8006
+ 'attributes': JsonApiColorPaletteInAttributes;
7999
8007
  }
8000
8008
  export type JsonApiThemeInTypeEnum = 'theme';
8001
8009
  export interface JsonApiThemeInDocument {
@@ -8013,7 +8021,7 @@ export interface JsonApiThemeOut {
8013
8021
  * API identifier of an object
8014
8022
  */
8015
8023
  'id': string;
8016
- 'attributes': JsonApiColorPaletteOutAttributes;
8024
+ 'attributes': JsonApiColorPaletteInAttributes;
8017
8025
  }
8018
8026
  export type JsonApiThemeOutTypeEnum = 'theme';
8019
8027
  export interface JsonApiThemeOutDocument {
@@ -8037,7 +8045,7 @@ export interface JsonApiThemeOutWithLinks {
8037
8045
  * API identifier of an object
8038
8046
  */
8039
8047
  'id': string;
8040
- 'attributes': JsonApiColorPaletteOutAttributes;
8048
+ 'attributes': JsonApiColorPaletteInAttributes;
8041
8049
  'links'?: ObjectLinks;
8042
8050
  }
8043
8051
  export type JsonApiThemeOutWithLinksTypeEnum = 'theme';
@@ -8071,7 +8079,7 @@ export interface JsonApiUserDataFilterIn {
8071
8079
  * API identifier of an object
8072
8080
  */
8073
8081
  'id': string;
8074
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
8082
+ 'attributes': JsonApiUserDataFilterOutAttributes;
8075
8083
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
8076
8084
  }
8077
8085
  export type JsonApiUserDataFilterInTypeEnum = 'userDataFilter';
@@ -8091,10 +8099,17 @@ export interface JsonApiUserDataFilterOut {
8091
8099
  */
8092
8100
  'id': string;
8093
8101
  'meta'?: JsonApiExportDefinitionOutMeta;
8094
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
8102
+ 'attributes': JsonApiUserDataFilterOutAttributes;
8095
8103
  'relationships'?: JsonApiUserDataFilterOutRelationships;
8096
8104
  }
8097
8105
  export type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
8106
+ export interface JsonApiUserDataFilterOutAttributes {
8107
+ 'title'?: string;
8108
+ 'description'?: string;
8109
+ 'tags'?: Array<string>;
8110
+ 'areRelationsValid'?: boolean;
8111
+ 'maql': string;
8112
+ }
8098
8113
  export interface JsonApiUserDataFilterOutDocument {
8099
8114
  'data': JsonApiUserDataFilterOut;
8100
8115
  'links'?: ObjectLinks;
@@ -8139,7 +8154,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
8139
8154
  */
8140
8155
  'id': string;
8141
8156
  'meta'?: JsonApiExportDefinitionOutMeta;
8142
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
8157
+ 'attributes': JsonApiUserDataFilterOutAttributes;
8143
8158
  'relationships'?: JsonApiUserDataFilterOutRelationships;
8144
8159
  'links'?: ObjectLinks;
8145
8160
  }
@@ -8182,17 +8197,10 @@ export interface JsonApiUserDataFilterPostOptionalId {
8182
8197
  * API identifier of an object
8183
8198
  */
8184
8199
  'id'?: string;
8185
- 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
8200
+ 'attributes': JsonApiUserDataFilterOutAttributes;
8186
8201
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
8187
8202
  }
8188
8203
  export type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
8189
- export interface JsonApiUserDataFilterPostOptionalIdAttributes {
8190
- 'title'?: string;
8191
- 'description'?: string;
8192
- 'tags'?: Array<string>;
8193
- 'areRelationsValid'?: boolean;
8194
- 'maql': string;
8195
- }
8196
8204
  export interface JsonApiUserDataFilterPostOptionalIdDocument {
8197
8205
  'data': JsonApiUserDataFilterPostOptionalId;
8198
8206
  }
@@ -8403,6 +8411,9 @@ export interface JsonApiUserOutAttributes {
8403
8411
  'firstname'?: string;
8404
8412
  'lastname'?: string;
8405
8413
  'email'?: string;
8414
+ /**
8415
+ * Is user system account
8416
+ */
8406
8417
  'systemAccount'?: boolean;
8407
8418
  }
8408
8419
  export interface JsonApiUserOutDocument {
@@ -8842,7 +8853,7 @@ export interface JsonApiWorkspaceAutomationOutRelationships {
8842
8853
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
8843
8854
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
8844
8855
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
8845
- 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
8856
+ 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
8846
8857
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
8847
8858
  }
8848
8859
  export interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {