@gooddata/api-client-tiger 11.41.0-alpha.1 → 11.41.0-alpha.3

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.
@@ -184,6 +184,10 @@ export interface AutomationAlertAfm {
184
184
  * Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
185
185
  */
186
186
  'auxMeasures'?: Array<AutomationMeasureItem>;
187
+ /**
188
+ * Parameters to be used in the computation.
189
+ */
190
+ 'parameters'?: Array<AutomationParameterItem>;
187
191
  }
188
192
  /**
189
193
  * @type AutomationAlertCondition
@@ -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.
@@ -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'?: JsonApiCookieSecurityConfigurationPatchAttributes;
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,7 +4422,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
4421
4422
  * API identifier of an object
4422
4423
  */
4423
4424
  'id': string;
4424
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4425
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
4425
4426
  }
4426
4427
  export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
4427
4428
  export interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -4440,9 +4441,16 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4440
4441
  * API identifier of an object
4441
4442
  */
4442
4443
  'id': string;
4443
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4444
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
4444
4445
  }
4445
4446
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
4447
+ export interface JsonApiCookieSecurityConfigurationPatchAttributes {
4448
+ 'lastRotation'?: string;
4449
+ /**
4450
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4451
+ */
4452
+ 'rotationInterval'?: string;
4453
+ }
4446
4454
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
4447
4455
  'data': JsonApiCookieSecurityConfigurationPatch;
4448
4456
  }
@@ -4540,7 +4548,7 @@ export interface JsonApiCustomApplicationSettingIn {
4540
4548
  * API identifier of an object
4541
4549
  */
4542
4550
  'id': string;
4543
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4551
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4544
4552
  }
4545
4553
  export type JsonApiCustomApplicationSettingInTypeEnum = 'customApplicationSetting';
4546
4554
  export interface JsonApiCustomApplicationSettingInDocument {
@@ -4559,16 +4567,9 @@ export interface JsonApiCustomApplicationSettingOut {
4559
4567
  */
4560
4568
  'id': string;
4561
4569
  'meta'?: JsonApiExportDefinitionOutMeta;
4562
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4570
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4563
4571
  }
4564
4572
  export type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
4565
- export interface JsonApiCustomApplicationSettingOutAttributes {
4566
- 'applicationName': string;
4567
- /**
4568
- * Free-form JSON content. Maximum supported length is 250000 characters.
4569
- */
4570
- 'content': object;
4571
- }
4572
4573
  export interface JsonApiCustomApplicationSettingOutDocument {
4573
4574
  'data': JsonApiCustomApplicationSettingOut;
4574
4575
  'links'?: ObjectLinks;
@@ -4591,7 +4592,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
4591
4592
  */
4592
4593
  'id': string;
4593
4594
  'meta'?: JsonApiExportDefinitionOutMeta;
4594
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4595
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4595
4596
  'links'?: ObjectLinks;
4596
4597
  }
4597
4598
  export type JsonApiCustomApplicationSettingOutWithLinksTypeEnum = 'customApplicationSetting';
@@ -4632,9 +4633,16 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
4632
4633
  * API identifier of an object
4633
4634
  */
4634
4635
  'id'?: string;
4635
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4636
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4636
4637
  }
4637
4638
  export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = 'customApplicationSetting';
4639
+ export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
4640
+ 'applicationName': string;
4641
+ /**
4642
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4643
+ */
4644
+ 'content': object;
4645
+ }
4638
4646
  export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
4639
4647
  'data': JsonApiCustomApplicationSettingPostOptionalId;
4640
4648
  }
@@ -4650,9 +4658,13 @@ export interface JsonApiCustomGeoCollectionIn {
4650
4658
  * API identifier of an object
4651
4659
  */
4652
4660
  'id': string;
4653
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4661
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4654
4662
  }
4655
4663
  export type JsonApiCustomGeoCollectionInTypeEnum = 'customGeoCollection';
4664
+ export interface JsonApiCustomGeoCollectionInAttributes {
4665
+ 'name'?: string | null;
4666
+ 'description'?: string | null;
4667
+ }
4656
4668
  export interface JsonApiCustomGeoCollectionInDocument {
4657
4669
  'data': JsonApiCustomGeoCollectionIn;
4658
4670
  }
@@ -4668,13 +4680,9 @@ export interface JsonApiCustomGeoCollectionOut {
4668
4680
  * API identifier of an object
4669
4681
  */
4670
4682
  'id': string;
4671
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4683
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4672
4684
  }
4673
4685
  export type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
4674
- export interface JsonApiCustomGeoCollectionOutAttributes {
4675
- 'name'?: string | null;
4676
- 'description'?: string | null;
4677
- }
4678
4686
  export interface JsonApiCustomGeoCollectionOutDocument {
4679
4687
  'data': JsonApiCustomGeoCollectionOut;
4680
4688
  'links'?: ObjectLinks;
@@ -4696,7 +4704,7 @@ export interface JsonApiCustomGeoCollectionOutWithLinks {
4696
4704
  * API identifier of an object
4697
4705
  */
4698
4706
  'id': string;
4699
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4707
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4700
4708
  'links'?: ObjectLinks;
4701
4709
  }
4702
4710
  export type JsonApiCustomGeoCollectionOutWithLinksTypeEnum = 'customGeoCollection';
@@ -4712,7 +4720,7 @@ export interface JsonApiCustomGeoCollectionPatch {
4712
4720
  * API identifier of an object
4713
4721
  */
4714
4722
  'id': string;
4715
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4723
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4716
4724
  }
4717
4725
  export type JsonApiCustomGeoCollectionPatchTypeEnum = 'customGeoCollection';
4718
4726
  export interface JsonApiCustomGeoCollectionPatchDocument {
@@ -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
  }
@@ -6338,7 +6346,7 @@ export interface JsonApiIpAllowlistPolicyIn {
6338
6346
  export type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
6339
6347
  export interface JsonApiIpAllowlistPolicyInAttributes {
6340
6348
  /**
6341
- * Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
6349
+ * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
6342
6350
  */
6343
6351
  'allowedSources': Array<string> | null;
6344
6352
  }
@@ -6421,9 +6429,12 @@ export interface JsonApiJwkIn {
6421
6429
  * API identifier of an object
6422
6430
  */
6423
6431
  'id': string;
6424
- 'attributes'?: JsonApiJwkOutAttributes;
6432
+ 'attributes'?: JsonApiJwkInAttributes;
6425
6433
  }
6426
6434
  export type JsonApiJwkInTypeEnum = 'jwk';
6435
+ export interface JsonApiJwkInAttributes {
6436
+ 'content'?: RsaSpecification;
6437
+ }
6427
6438
  export interface JsonApiJwkInDocument {
6428
6439
  'data': JsonApiJwkIn;
6429
6440
  }
@@ -6439,12 +6450,9 @@ export interface JsonApiJwkOut {
6439
6450
  * API identifier of an object
6440
6451
  */
6441
6452
  'id': string;
6442
- 'attributes'?: JsonApiJwkOutAttributes;
6453
+ 'attributes'?: JsonApiJwkInAttributes;
6443
6454
  }
6444
6455
  export type JsonApiJwkOutTypeEnum = 'jwk';
6445
- export interface JsonApiJwkOutAttributes {
6446
- 'content'?: RsaSpecification;
6447
- }
6448
6456
  export interface JsonApiJwkOutDocument {
6449
6457
  'data': JsonApiJwkOut;
6450
6458
  'links'?: ObjectLinks;
@@ -6466,7 +6474,7 @@ export interface JsonApiJwkOutWithLinks {
6466
6474
  * API identifier of an object
6467
6475
  */
6468
6476
  'id': string;
6469
- 'attributes'?: JsonApiJwkOutAttributes;
6477
+ 'attributes'?: JsonApiJwkInAttributes;
6470
6478
  'links'?: ObjectLinks;
6471
6479
  }
6472
6480
  export type JsonApiJwkOutWithLinksTypeEnum = 'jwk';
@@ -6482,7 +6490,7 @@ export interface JsonApiJwkPatch {
6482
6490
  * API identifier of an object
6483
6491
  */
6484
6492
  'id': string;
6485
- 'attributes'?: JsonApiJwkOutAttributes;
6493
+ 'attributes'?: JsonApiJwkInAttributes;
6486
6494
  }
6487
6495
  export type JsonApiJwkPatchTypeEnum = 'jwk';
6488
6496
  export interface JsonApiJwkPatchDocument {
@@ -7705,7 +7713,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_
7705
7713
  export interface JsonApiOrganizationOutRelationships {
7706
7714
  'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7707
7715
  'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7708
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7716
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7709
7717
  }
7710
7718
  export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7711
7719
  'data': JsonApiUserLinkage | null;
@@ -7713,6 +7721,9 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7713
7721
  export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7714
7722
  'data': JsonApiUserGroupLinkage | null;
7715
7723
  }
7724
+ export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
7725
+ 'data': JsonApiIdentityProviderLinkage | null;
7726
+ }
7716
7727
  /**
7717
7728
  * JSON:API representation of patching organization entity.
7718
7729
  */
@@ -7747,10 +7758,7 @@ export interface JsonApiOrganizationPatchDocument {
7747
7758
  'data': JsonApiOrganizationPatch;
7748
7759
  }
7749
7760
  export interface JsonApiOrganizationPatchRelationships {
7750
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7751
- }
7752
- export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
7753
- 'data': JsonApiIdentityProviderLinkage | null;
7761
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7754
7762
  }
7755
7763
  /**
7756
7764
  * JSON:API representation of organizationSetting entity.
@@ -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 {