@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.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.
@@ -1195,6 +1195,10 @@ export interface DeclarativeColumn {
1195
1195
  * Referenced table (Foreign key)
1196
1196
  */
1197
1197
  referencedTableColumn?: string;
1198
+ /**
1199
+ * Column description/comment from database
1200
+ */
1201
+ description?: string;
1198
1202
  }
1199
1203
  export declare const DeclarativeColumnDataTypeEnum: {
1200
1204
  readonly INT: "INT";
@@ -3191,7 +3195,7 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
3191
3195
  export interface JsonApiAggregatedFactOutList {
3192
3196
  data: Array<JsonApiAggregatedFactOutWithLinks>;
3193
3197
  links?: ListLinks;
3194
- meta?: JsonApiWorkspaceAutomationOutListMeta;
3198
+ meta?: JsonApiColorPaletteOutListMeta;
3195
3199
  /**
3196
3200
  * Included resources
3197
3201
  */
@@ -3234,7 +3238,7 @@ export interface JsonApiAnalyticalDashboardIn {
3234
3238
  * API identifier of an object
3235
3239
  */
3236
3240
  id: string;
3237
- attributes: JsonApiFilterContextOutAttributes;
3241
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
3238
3242
  }
3239
3243
  export declare const JsonApiAnalyticalDashboardInTypeEnum: {
3240
3244
  readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
@@ -3304,7 +3308,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
3304
3308
  export interface JsonApiAnalyticalDashboardOutList {
3305
3309
  data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
3306
3310
  links?: ListLinks;
3307
- meta?: JsonApiWorkspaceAutomationOutListMeta;
3311
+ meta?: JsonApiColorPaletteOutListMeta;
3308
3312
  /**
3309
3313
  * Included resources
3310
3314
  */
@@ -3426,12 +3430,22 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
3426
3430
  * API identifier of an object
3427
3431
  */
3428
3432
  id?: string;
3429
- attributes: JsonApiFilterContextOutAttributes;
3433
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
3430
3434
  }
3431
3435
  export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
3432
3436
  readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
3433
3437
  };
3434
3438
  export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
3439
+ export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
3440
+ title?: string;
3441
+ description?: string;
3442
+ tags?: Array<string>;
3443
+ areRelationsValid?: boolean;
3444
+ /**
3445
+ * Free-form JSON content. Maximum supported length is 250000 characters.
3446
+ */
3447
+ content: object;
3448
+ }
3435
3449
  export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
3436
3450
  data: JsonApiAnalyticalDashboardPostOptionalId;
3437
3451
  }
@@ -3489,7 +3503,7 @@ export interface JsonApiApiTokenOutDocument {
3489
3503
  export interface JsonApiApiTokenOutList {
3490
3504
  data: Array<JsonApiApiTokenOutWithLinks>;
3491
3505
  links?: ListLinks;
3492
- meta?: JsonApiWorkspaceAutomationOutListMeta;
3506
+ meta?: JsonApiColorPaletteOutListMeta;
3493
3507
  }
3494
3508
  export interface JsonApiApiTokenOutWithLinks {
3495
3509
  /**
@@ -3519,12 +3533,22 @@ export interface JsonApiAttributeHierarchyIn {
3519
3533
  * API identifier of an object
3520
3534
  */
3521
3535
  id: string;
3522
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
3536
+ attributes?: JsonApiAttributeHierarchyInAttributes;
3523
3537
  }
3524
3538
  export declare const JsonApiAttributeHierarchyInTypeEnum: {
3525
3539
  readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
3526
3540
  };
3527
3541
  export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
3542
+ export interface JsonApiAttributeHierarchyInAttributes {
3543
+ title?: string;
3544
+ description?: string;
3545
+ tags?: Array<string>;
3546
+ areRelationsValid?: boolean;
3547
+ /**
3548
+ * Free-form JSON content. Maximum supported length is 15000 characters.
3549
+ */
3550
+ content?: object;
3551
+ }
3528
3552
  export interface JsonApiAttributeHierarchyInDocument {
3529
3553
  data: JsonApiAttributeHierarchyIn;
3530
3554
  }
@@ -3589,7 +3613,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
3589
3613
  export interface JsonApiAttributeHierarchyOutList {
3590
3614
  data: Array<JsonApiAttributeHierarchyOutWithLinks>;
3591
3615
  links?: ListLinks;
3592
- meta?: JsonApiWorkspaceAutomationOutListMeta;
3616
+ meta?: JsonApiColorPaletteOutListMeta;
3593
3617
  /**
3594
3618
  * Included resources
3595
3619
  */
@@ -3630,22 +3654,12 @@ export interface JsonApiAttributeHierarchyPatch {
3630
3654
  * API identifier of an object
3631
3655
  */
3632
3656
  id: string;
3633
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
3657
+ attributes?: JsonApiAttributeHierarchyInAttributes;
3634
3658
  }
3635
3659
  export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
3636
3660
  readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
3637
3661
  };
3638
3662
  export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
3639
- export interface JsonApiAttributeHierarchyPatchAttributes {
3640
- title?: string;
3641
- description?: string;
3642
- tags?: Array<string>;
3643
- areRelationsValid?: boolean;
3644
- /**
3645
- * Free-form JSON content. Maximum supported length is 15000 characters.
3646
- */
3647
- content?: object;
3648
- }
3649
3663
  export interface JsonApiAttributeHierarchyPatchDocument {
3650
3664
  data: JsonApiAttributeHierarchyPatch;
3651
3665
  }
@@ -3744,7 +3758,7 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
3744
3758
  export interface JsonApiAttributeOutList {
3745
3759
  data: Array<JsonApiAttributeOutWithLinks>;
3746
3760
  links?: ListLinks;
3747
- meta?: JsonApiWorkspaceAutomationOutListMeta;
3761
+ meta?: JsonApiColorPaletteOutListMeta;
3748
3762
  /**
3749
3763
  * Included resources
3750
3764
  */
@@ -3798,16 +3812,144 @@ export interface JsonApiAutomationIn {
3798
3812
  * API identifier of an object
3799
3813
  */
3800
3814
  id: string;
3801
- attributes?: JsonApiAutomationPatchAttributes;
3802
- relationships?: JsonApiAutomationPatchRelationships;
3815
+ attributes?: JsonApiAutomationInAttributes;
3816
+ relationships?: JsonApiAutomationInRelationships;
3803
3817
  }
3804
3818
  export declare const JsonApiAutomationInTypeEnum: {
3805
3819
  readonly AUTOMATION: "automation";
3806
3820
  };
3807
3821
  export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
3822
+ export interface JsonApiAutomationInAttributes {
3823
+ title?: string;
3824
+ description?: string;
3825
+ tags?: Array<string>;
3826
+ areRelationsValid?: boolean;
3827
+ /**
3828
+ * Additional details to be included in the automated message.
3829
+ */
3830
+ details?: object;
3831
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
3832
+ /**
3833
+ * Current state of the automation.
3834
+ */
3835
+ state?: JsonApiAutomationInAttributesStateEnum;
3836
+ /**
3837
+ * Specify automation evaluation mode.
3838
+ */
3839
+ evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
3840
+ schedule?: JsonApiAutomationInAttributesSchedule;
3841
+ alert?: JsonApiAutomationInAttributesAlert;
3842
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
3843
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
3844
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
3845
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
3846
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
3847
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
3848
+ /**
3849
+ * External recipients of the automation action results.
3850
+ */
3851
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
3852
+ }
3853
+ export declare const JsonApiAutomationInAttributesStateEnum: {
3854
+ readonly ACTIVE: "ACTIVE";
3855
+ readonly PAUSED: "PAUSED";
3856
+ };
3857
+ export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
3858
+ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
3859
+ readonly SHARED: "SHARED";
3860
+ readonly PER_RECIPIENT: "PER_RECIPIENT";
3861
+ };
3862
+ export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
3863
+ export interface JsonApiAutomationInAttributesAlert {
3864
+ execution: AlertAfm;
3865
+ condition: AlertCondition;
3866
+ /**
3867
+ * 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.
3868
+ */
3869
+ trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
3870
+ }
3871
+ export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
3872
+ readonly ALWAYS: "ALWAYS";
3873
+ readonly ONCE: "ONCE";
3874
+ };
3875
+ export type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
3876
+ export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
3877
+ requestPayload: DashboardTabularExportRequestV2;
3878
+ }
3879
+ export interface JsonApiAutomationInAttributesExternalRecipientsInner {
3880
+ /**
3881
+ * E-mail address to send notifications from.
3882
+ */
3883
+ email: string;
3884
+ }
3885
+ export interface JsonApiAutomationInAttributesImageExportsInner {
3886
+ requestPayload: ImageExportRequest;
3887
+ }
3888
+ /**
3889
+ * Additional information for the automation.
3890
+ */
3891
+ export interface JsonApiAutomationInAttributesMetadata {
3892
+ [key: string]: any;
3893
+ widget?: string;
3894
+ visibleFilters?: Array<VisibleFilter>;
3895
+ }
3896
+ export interface JsonApiAutomationInAttributesRawExportsInner {
3897
+ requestPayload: RawExportAutomationRequest;
3898
+ }
3899
+ export interface JsonApiAutomationInAttributesSchedule {
3900
+ /**
3901
+ * 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.
3902
+ */
3903
+ cron: string;
3904
+ /**
3905
+ * Human-readable description of the cron expression.
3906
+ */
3907
+ cronDescription?: string;
3908
+ /**
3909
+ * Timezone in which the schedule is defined.
3910
+ */
3911
+ timezone: string;
3912
+ /**
3913
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
3914
+ */
3915
+ firstRun?: string;
3916
+ }
3917
+ export interface JsonApiAutomationInAttributesSlidesExportsInner {
3918
+ requestPayload: SlidesExportRequest;
3919
+ }
3920
+ export interface JsonApiAutomationInAttributesTabularExportsInner {
3921
+ requestPayload: TabularExportRequest;
3922
+ }
3923
+ export interface JsonApiAutomationInAttributesVisualExportsInner {
3924
+ requestPayload: VisualExportRequest;
3925
+ }
3808
3926
  export interface JsonApiAutomationInDocument {
3809
3927
  data: JsonApiAutomationIn;
3810
3928
  }
3929
+ export interface JsonApiAutomationInRelationships {
3930
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
3931
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
3932
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
3933
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
3934
+ }
3935
+ export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
3936
+ data: JsonApiAnalyticalDashboardLinkage | null;
3937
+ }
3938
+ export interface JsonApiAutomationInRelationshipsExportDefinitions {
3939
+ /**
3940
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3941
+ */
3942
+ data: Array<JsonApiExportDefinitionLinkage>;
3943
+ }
3944
+ export interface JsonApiAutomationInRelationshipsNotificationChannel {
3945
+ data: JsonApiNotificationChannelLinkage | null;
3946
+ }
3947
+ export interface JsonApiAutomationInRelationshipsRecipients {
3948
+ /**
3949
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3950
+ */
3951
+ data: Array<JsonApiUserLinkage>;
3952
+ }
3811
3953
  /**
3812
3954
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
3813
3955
  */
@@ -3848,7 +3990,7 @@ export interface JsonApiAutomationOutAttributes {
3848
3990
  * Additional details to be included in the automated message.
3849
3991
  */
3850
3992
  details?: object;
3851
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
3993
+ metadata?: JsonApiAutomationInAttributesMetadata | null;
3852
3994
  /**
3853
3995
  * Current state of the automation.
3854
3996
  */
@@ -3857,18 +3999,18 @@ export interface JsonApiAutomationOutAttributes {
3857
3999
  * Specify automation evaluation mode.
3858
4000
  */
3859
4001
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
3860
- schedule?: JsonApiAutomationPatchAttributesSchedule;
3861
- alert?: JsonApiAutomationPatchAttributesAlert;
3862
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
3863
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
3864
- imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
3865
- rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
3866
- slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
3867
- dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
4002
+ schedule?: JsonApiAutomationInAttributesSchedule;
4003
+ alert?: JsonApiAutomationInAttributesAlert;
4004
+ tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
4005
+ visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
4006
+ imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
4007
+ rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
4008
+ slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
4009
+ dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
3868
4010
  /**
3869
4011
  * External recipients of the automation action results.
3870
4012
  */
3871
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
4013
+ externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
3872
4014
  createdAt?: string;
3873
4015
  modifiedAt?: string;
3874
4016
  }
@@ -3900,19 +4042,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
3900
4042
  export interface JsonApiAutomationOutList {
3901
4043
  data: Array<JsonApiAutomationOutWithLinks>;
3902
4044
  links?: ListLinks;
3903
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4045
+ meta?: JsonApiColorPaletteOutListMeta;
3904
4046
  /**
3905
4047
  * Included resources
3906
4048
  */
3907
4049
  included?: Array<JsonApiAutomationOutIncludes>;
3908
4050
  }
3909
4051
  export interface JsonApiAutomationOutRelationships {
3910
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
3911
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
4052
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
4053
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
3912
4054
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3913
4055
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3914
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
3915
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
4056
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
4057
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
3916
4058
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
3917
4059
  }
3918
4060
  export interface JsonApiAutomationOutRelationshipsAutomationResults {
@@ -3951,144 +4093,16 @@ export interface JsonApiAutomationPatch {
3951
4093
  * API identifier of an object
3952
4094
  */
3953
4095
  id: string;
3954
- attributes?: JsonApiAutomationPatchAttributes;
3955
- relationships?: JsonApiAutomationPatchRelationships;
4096
+ attributes?: JsonApiAutomationInAttributes;
4097
+ relationships?: JsonApiAutomationInRelationships;
3956
4098
  }
3957
4099
  export declare const JsonApiAutomationPatchTypeEnum: {
3958
4100
  readonly AUTOMATION: "automation";
3959
4101
  };
3960
4102
  export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
3961
- export interface JsonApiAutomationPatchAttributes {
3962
- title?: string;
3963
- description?: string;
3964
- tags?: Array<string>;
3965
- areRelationsValid?: boolean;
3966
- /**
3967
- * Additional details to be included in the automated message.
3968
- */
3969
- details?: object;
3970
- metadata?: JsonApiAutomationPatchAttributesMetadata | null;
3971
- /**
3972
- * Current state of the automation.
3973
- */
3974
- state?: JsonApiAutomationPatchAttributesStateEnum;
3975
- /**
3976
- * Specify automation evaluation mode.
3977
- */
3978
- evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
3979
- schedule?: JsonApiAutomationPatchAttributesSchedule;
3980
- alert?: JsonApiAutomationPatchAttributesAlert;
3981
- tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
3982
- visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
3983
- imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
3984
- rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
3985
- slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
3986
- dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
3987
- /**
3988
- * External recipients of the automation action results.
3989
- */
3990
- externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
3991
- }
3992
- export declare const JsonApiAutomationPatchAttributesStateEnum: {
3993
- readonly ACTIVE: "ACTIVE";
3994
- readonly PAUSED: "PAUSED";
3995
- };
3996
- export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
3997
- export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
3998
- readonly SHARED: "SHARED";
3999
- readonly PER_RECIPIENT: "PER_RECIPIENT";
4000
- };
4001
- export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
4002
- export interface JsonApiAutomationPatchAttributesAlert {
4003
- execution: AlertAfm;
4004
- condition: AlertCondition;
4005
- /**
4006
- * 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.
4007
- */
4008
- trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
4009
- }
4010
- export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
4011
- readonly ALWAYS: "ALWAYS";
4012
- readonly ONCE: "ONCE";
4013
- };
4014
- export type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
4015
- export interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
4016
- requestPayload: DashboardTabularExportRequestV2;
4017
- }
4018
- export interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
4019
- /**
4020
- * E-mail address to send notifications from.
4021
- */
4022
- email: string;
4023
- }
4024
- export interface JsonApiAutomationPatchAttributesImageExportsInner {
4025
- requestPayload: ImageExportRequest;
4026
- }
4027
- /**
4028
- * Additional information for the automation.
4029
- */
4030
- export interface JsonApiAutomationPatchAttributesMetadata {
4031
- [key: string]: any;
4032
- widget?: string;
4033
- visibleFilters?: Array<VisibleFilter>;
4034
- }
4035
- export interface JsonApiAutomationPatchAttributesRawExportsInner {
4036
- requestPayload: RawExportAutomationRequest;
4037
- }
4038
- export interface JsonApiAutomationPatchAttributesSchedule {
4039
- /**
4040
- * 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.
4041
- */
4042
- cron: string;
4043
- /**
4044
- * Human-readable description of the cron expression.
4045
- */
4046
- cronDescription?: string;
4047
- /**
4048
- * Timezone in which the schedule is defined.
4049
- */
4050
- timezone: string;
4051
- /**
4052
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
4053
- */
4054
- firstRun?: string;
4055
- }
4056
- export interface JsonApiAutomationPatchAttributesSlidesExportsInner {
4057
- requestPayload: SlidesExportRequest;
4058
- }
4059
- export interface JsonApiAutomationPatchAttributesTabularExportsInner {
4060
- requestPayload: TabularExportRequest;
4061
- }
4062
- export interface JsonApiAutomationPatchAttributesVisualExportsInner {
4063
- requestPayload: VisualExportRequest;
4064
- }
4065
4103
  export interface JsonApiAutomationPatchDocument {
4066
4104
  data: JsonApiAutomationPatch;
4067
4105
  }
4068
- export interface JsonApiAutomationPatchRelationships {
4069
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
4070
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
4071
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
4072
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
4073
- }
4074
- export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
4075
- data: JsonApiAnalyticalDashboardLinkage | null;
4076
- }
4077
- export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
4078
- /**
4079
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4080
- */
4081
- data: Array<JsonApiExportDefinitionLinkage>;
4082
- }
4083
- export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
4084
- data: JsonApiNotificationChannelLinkage | null;
4085
- }
4086
- export interface JsonApiAutomationPatchRelationshipsRecipients {
4087
- /**
4088
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4089
- */
4090
- data: Array<JsonApiUserLinkage>;
4091
- }
4092
4106
  /**
4093
4107
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
4094
4108
  */
@@ -4212,7 +4226,10 @@ export interface JsonApiColorPaletteOutDocument {
4212
4226
  export interface JsonApiColorPaletteOutList {
4213
4227
  data: Array<JsonApiColorPaletteOutWithLinks>;
4214
4228
  links?: ListLinks;
4215
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4229
+ meta?: JsonApiColorPaletteOutListMeta;
4230
+ }
4231
+ export interface JsonApiColorPaletteOutListMeta {
4232
+ page?: PageMetadata;
4216
4233
  }
4217
4234
  export interface JsonApiColorPaletteOutWithLinks {
4218
4235
  /**
@@ -4270,12 +4287,19 @@ export interface JsonApiCookieSecurityConfigurationIn {
4270
4287
  * API identifier of an object
4271
4288
  */
4272
4289
  id: string;
4273
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4290
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4274
4291
  }
4275
4292
  export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
4276
4293
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4277
4294
  };
4278
4295
  export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
4296
+ export interface JsonApiCookieSecurityConfigurationInAttributes {
4297
+ lastRotation?: string;
4298
+ /**
4299
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4300
+ */
4301
+ rotationInterval?: string;
4302
+ }
4279
4303
  export interface JsonApiCookieSecurityConfigurationInDocument {
4280
4304
  data: JsonApiCookieSecurityConfigurationIn;
4281
4305
  }
@@ -4291,7 +4315,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
4291
4315
  * API identifier of an object
4292
4316
  */
4293
4317
  id: string;
4294
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4318
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4295
4319
  }
4296
4320
  export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
4297
4321
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
@@ -4313,19 +4337,12 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4313
4337
  * API identifier of an object
4314
4338
  */
4315
4339
  id: string;
4316
- attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4340
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4317
4341
  }
4318
4342
  export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
4319
4343
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4320
4344
  };
4321
4345
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
4322
- export interface JsonApiCookieSecurityConfigurationPatchAttributes {
4323
- lastRotation?: string;
4324
- /**
4325
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4326
- */
4327
- rotationInterval?: string;
4328
- }
4329
4346
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
4330
4347
  data: JsonApiCookieSecurityConfigurationPatch;
4331
4348
  }
@@ -4381,7 +4398,7 @@ export interface JsonApiCspDirectiveOutDocument {
4381
4398
  export interface JsonApiCspDirectiveOutList {
4382
4399
  data: Array<JsonApiCspDirectiveOutWithLinks>;
4383
4400
  links?: ListLinks;
4384
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4401
+ meta?: JsonApiColorPaletteOutListMeta;
4385
4402
  }
4386
4403
  export interface JsonApiCspDirectiveOutWithLinks {
4387
4404
  /**
@@ -4435,7 +4452,7 @@ export interface JsonApiCustomApplicationSettingIn {
4435
4452
  * API identifier of an object
4436
4453
  */
4437
4454
  id: string;
4438
- attributes: JsonApiCustomApplicationSettingOutAttributes;
4455
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4439
4456
  }
4440
4457
  export declare const JsonApiCustomApplicationSettingInTypeEnum: {
4441
4458
  readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
@@ -4457,19 +4474,12 @@ export interface JsonApiCustomApplicationSettingOut {
4457
4474
  */
4458
4475
  id: string;
4459
4476
  meta?: JsonApiVisualizationObjectOutMeta;
4460
- attributes: JsonApiCustomApplicationSettingOutAttributes;
4477
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4461
4478
  }
4462
4479
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
4463
4480
  readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
4464
4481
  };
4465
4482
  export type JsonApiCustomApplicationSettingOutTypeEnum = (typeof JsonApiCustomApplicationSettingOutTypeEnum)[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
4466
- export interface JsonApiCustomApplicationSettingOutAttributes {
4467
- applicationName: string;
4468
- /**
4469
- * Free-form JSON content. Maximum supported length is 15000 characters.
4470
- */
4471
- content: object;
4472
- }
4473
4483
  export interface JsonApiCustomApplicationSettingOutDocument {
4474
4484
  data: JsonApiCustomApplicationSettingOut;
4475
4485
  links?: ObjectLinks;
@@ -4480,7 +4490,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
4480
4490
  export interface JsonApiCustomApplicationSettingOutList {
4481
4491
  data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
4482
4492
  links?: ListLinks;
4483
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4493
+ meta?: JsonApiColorPaletteOutListMeta;
4484
4494
  }
4485
4495
  export interface JsonApiCustomApplicationSettingOutWithLinks {
4486
4496
  /**
@@ -4492,7 +4502,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
4492
4502
  */
4493
4503
  id: string;
4494
4504
  meta?: JsonApiVisualizationObjectOutMeta;
4495
- attributes: JsonApiCustomApplicationSettingOutAttributes;
4505
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4496
4506
  links?: ObjectLinks;
4497
4507
  }
4498
4508
  export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
@@ -4539,12 +4549,19 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
4539
4549
  * API identifier of an object
4540
4550
  */
4541
4551
  id?: string;
4542
- attributes: JsonApiCustomApplicationSettingOutAttributes;
4552
+ attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4543
4553
  }
4544
4554
  export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
4545
4555
  readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
4546
4556
  };
4547
4557
  export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
4558
+ export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
4559
+ applicationName: string;
4560
+ /**
4561
+ * Free-form JSON content. Maximum supported length is 15000 characters.
4562
+ */
4563
+ content: object;
4564
+ }
4548
4565
  export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
4549
4566
  data: JsonApiCustomApplicationSettingPostOptionalId;
4550
4567
  }
@@ -4560,7 +4577,7 @@ export interface JsonApiDashboardPluginIn {
4560
4577
  * API identifier of an object
4561
4578
  */
4562
4579
  id: string;
4563
- attributes?: JsonApiDashboardPluginPatchAttributes;
4580
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4564
4581
  }
4565
4582
  export declare const JsonApiDashboardPluginInTypeEnum: {
4566
4583
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
@@ -4626,7 +4643,7 @@ export interface JsonApiDashboardPluginOutDocument {
4626
4643
  export interface JsonApiDashboardPluginOutList {
4627
4644
  data: Array<JsonApiDashboardPluginOutWithLinks>;
4628
4645
  links?: ListLinks;
4629
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4646
+ meta?: JsonApiColorPaletteOutListMeta;
4630
4647
  /**
4631
4648
  * Included resources
4632
4649
  */
@@ -4666,22 +4683,12 @@ export interface JsonApiDashboardPluginPatch {
4666
4683
  * API identifier of an object
4667
4684
  */
4668
4685
  id: string;
4669
- attributes?: JsonApiDashboardPluginPatchAttributes;
4686
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4670
4687
  }
4671
4688
  export declare const JsonApiDashboardPluginPatchTypeEnum: {
4672
4689
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
4673
4690
  };
4674
4691
  export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
4675
- export interface JsonApiDashboardPluginPatchAttributes {
4676
- title?: string;
4677
- description?: string;
4678
- tags?: Array<string>;
4679
- areRelationsValid?: boolean;
4680
- /**
4681
- * Free-form JSON content. Maximum supported length is 250000 characters.
4682
- */
4683
- content?: object;
4684
- }
4685
4692
  export interface JsonApiDashboardPluginPatchDocument {
4686
4693
  data: JsonApiDashboardPluginPatch;
4687
4694
  }
@@ -4697,12 +4704,22 @@ export interface JsonApiDashboardPluginPostOptionalId {
4697
4704
  * API identifier of an object
4698
4705
  */
4699
4706
  id?: string;
4700
- attributes?: JsonApiDashboardPluginPatchAttributes;
4707
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4701
4708
  }
4702
4709
  export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
4703
4710
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
4704
4711
  };
4705
4712
  export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
4713
+ export interface JsonApiDashboardPluginPostOptionalIdAttributes {
4714
+ title?: string;
4715
+ description?: string;
4716
+ tags?: Array<string>;
4717
+ areRelationsValid?: boolean;
4718
+ /**
4719
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4720
+ */
4721
+ content?: object;
4722
+ }
4706
4723
  export interface JsonApiDashboardPluginPostOptionalIdDocument {
4707
4724
  data: JsonApiDashboardPluginPostOptionalId;
4708
4725
  }
@@ -4718,7 +4735,7 @@ export interface JsonApiDataSourceIdentifierOut {
4718
4735
  * API identifier of an object
4719
4736
  */
4720
4737
  id: string;
4721
- meta?: JsonApiDataSourceOutMeta;
4738
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4722
4739
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4723
4740
  }
4724
4741
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
@@ -4769,18 +4786,29 @@ export interface JsonApiDataSourceIdentifierOutDocument {
4769
4786
  export interface JsonApiDataSourceIdentifierOutList {
4770
4787
  data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
4771
4788
  links?: ListLinks;
4772
- meta?: JsonApiWorkspaceAutomationOutListMeta;
4789
+ meta?: JsonApiColorPaletteOutListMeta;
4773
4790
  }
4774
- export interface JsonApiDataSourceIdentifierOutWithLinks {
4791
+ export interface JsonApiDataSourceIdentifierOutMeta {
4775
4792
  /**
4776
- * Object type
4793
+ * List of valid permissions for a logged-in user.
4777
4794
  */
4778
- type: JsonApiDataSourceIdentifierOutWithLinksTypeEnum;
4795
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
4796
+ }
4797
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
4798
+ readonly MANAGE: "MANAGE";
4799
+ readonly USE: "USE";
4800
+ };
4801
+ export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
4802
+ export interface JsonApiDataSourceIdentifierOutWithLinks {
4803
+ /**
4804
+ * Object type
4805
+ */
4806
+ type: JsonApiDataSourceIdentifierOutWithLinksTypeEnum;
4779
4807
  /**
4780
4808
  * API identifier of an object
4781
4809
  */
4782
4810
  id: string;
4783
- meta?: JsonApiDataSourceOutMeta;
4811
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4784
4812
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4785
4813
  links?: ObjectLinks;
4786
4814
  }
@@ -4854,7 +4882,7 @@ export interface JsonApiDataSourceInAttributes {
4854
4882
  /**
4855
4883
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4856
4884
  */
4857
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4885
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4858
4886
  /**
4859
4887
  * Determines how the results coming from a particular datasource should be cached.
4860
4888
  */
@@ -4909,7 +4937,7 @@ export interface JsonApiDataSourceOut {
4909
4937
  * API identifier of an object
4910
4938
  */
4911
4939
  id: string;
4912
- meta?: JsonApiDataSourceOutMeta;
4940
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4913
4941
  attributes: JsonApiDataSourceOutAttributes;
4914
4942
  }
4915
4943
  export declare const JsonApiDataSourceOutTypeEnum: {
@@ -4944,11 +4972,11 @@ export interface JsonApiDataSourceOutAttributes {
4944
4972
  /**
4945
4973
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4946
4974
  */
4947
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4975
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4948
4976
  /**
4949
4977
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
4950
4978
  */
4951
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4979
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4952
4980
  /**
4953
4981
  * Determines how the results coming from a particular datasource should be cached.
4954
4982
  */
@@ -5000,6 +5028,10 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
5000
5028
  readonly ACCESS_TOKEN: "ACCESS_TOKEN";
5001
5029
  };
5002
5030
  export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
5031
+ export interface JsonApiDataSourceOutAttributesParametersInner {
5032
+ name: string;
5033
+ value: string;
5034
+ }
5003
5035
  export interface JsonApiDataSourceOutDocument {
5004
5036
  data: JsonApiDataSourceOut;
5005
5037
  links?: ObjectLinks;
@@ -5010,19 +5042,8 @@ export interface JsonApiDataSourceOutDocument {
5010
5042
  export interface JsonApiDataSourceOutList {
5011
5043
  data: Array<JsonApiDataSourceOutWithLinks>;
5012
5044
  links?: ListLinks;
5013
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5014
- }
5015
- export interface JsonApiDataSourceOutMeta {
5016
- /**
5017
- * List of valid permissions for a logged-in user.
5018
- */
5019
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
5045
+ meta?: JsonApiColorPaletteOutListMeta;
5020
5046
  }
5021
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
5022
- readonly MANAGE: "MANAGE";
5023
- readonly USE: "USE";
5024
- };
5025
- export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
5026
5047
  export interface JsonApiDataSourceOutWithLinks {
5027
5048
  /**
5028
5049
  * Object type
@@ -5032,7 +5053,7 @@ export interface JsonApiDataSourceOutWithLinks {
5032
5053
  * API identifier of an object
5033
5054
  */
5034
5055
  id: string;
5035
- meta?: JsonApiDataSourceOutMeta;
5056
+ meta?: JsonApiDataSourceIdentifierOutMeta;
5036
5057
  attributes: JsonApiDataSourceOutAttributes;
5037
5058
  links?: ObjectLinks;
5038
5059
  }
@@ -5106,7 +5127,7 @@ export interface JsonApiDataSourcePatchAttributes {
5106
5127
  /**
5107
5128
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5108
5129
  */
5109
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
5130
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5110
5131
  /**
5111
5132
  * Determines how the results coming from a particular datasource should be cached.
5112
5133
  */
@@ -5146,10 +5167,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
5146
5167
  readonly NEVER: "NEVER";
5147
5168
  };
5148
5169
  export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
5149
- export interface JsonApiDataSourcePatchAttributesParametersInner {
5150
- name: string;
5151
- value: string;
5152
- }
5153
5170
  export interface JsonApiDataSourcePatchDocument {
5154
5171
  data: JsonApiDataSourcePatch;
5155
5172
  }
@@ -5287,7 +5304,7 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
5287
5304
  export interface JsonApiDatasetOutList {
5288
5305
  data: Array<JsonApiDatasetOutWithLinks>;
5289
5306
  links?: ListLinks;
5290
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5307
+ meta?: JsonApiColorPaletteOutListMeta;
5291
5308
  /**
5292
5309
  * Included resources
5293
5310
  */
@@ -5362,7 +5379,7 @@ export interface JsonApiEntitlementOutDocument {
5362
5379
  export interface JsonApiEntitlementOutList {
5363
5380
  data: Array<JsonApiEntitlementOutWithLinks>;
5364
5381
  links?: ListLinks;
5365
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5382
+ meta?: JsonApiColorPaletteOutListMeta;
5366
5383
  }
5367
5384
  export interface JsonApiEntitlementOutWithLinks {
5368
5385
  /**
@@ -5392,8 +5409,8 @@ export interface JsonApiExportDefinitionIn {
5392
5409
  * API identifier of an object
5393
5410
  */
5394
5411
  id: string;
5395
- attributes?: JsonApiExportDefinitionPatchAttributes;
5396
- relationships?: JsonApiExportDefinitionPatchRelationships;
5412
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5413
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5397
5414
  }
5398
5415
  export declare const JsonApiExportDefinitionInTypeEnum: {
5399
5416
  readonly EXPORT_DEFINITION: "exportDefinition";
@@ -5465,7 +5482,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
5465
5482
  export interface JsonApiExportDefinitionOutList {
5466
5483
  data: Array<JsonApiExportDefinitionOutWithLinks>;
5467
5484
  links?: ListLinks;
5468
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5485
+ meta?: JsonApiColorPaletteOutListMeta;
5469
5486
  /**
5470
5487
  * Included resources
5471
5488
  */
@@ -5473,7 +5490,7 @@ export interface JsonApiExportDefinitionOutList {
5473
5490
  }
5474
5491
  export interface JsonApiExportDefinitionOutRelationships {
5475
5492
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5476
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
5493
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
5477
5494
  automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
5478
5495
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
5479
5496
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
@@ -5514,27 +5531,16 @@ export interface JsonApiExportDefinitionPatch {
5514
5531
  * API identifier of an object
5515
5532
  */
5516
5533
  id: string;
5517
- attributes?: JsonApiExportDefinitionPatchAttributes;
5518
- relationships?: JsonApiExportDefinitionPatchRelationships;
5534
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5535
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5519
5536
  }
5520
5537
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
5521
5538
  readonly EXPORT_DEFINITION: "exportDefinition";
5522
5539
  };
5523
5540
  export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
5524
- export interface JsonApiExportDefinitionPatchAttributes {
5525
- title?: string;
5526
- description?: string;
5527
- tags?: Array<string>;
5528
- requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
5529
- areRelationsValid?: boolean;
5530
- }
5531
5541
  export interface JsonApiExportDefinitionPatchDocument {
5532
5542
  data: JsonApiExportDefinitionPatch;
5533
5543
  }
5534
- export interface JsonApiExportDefinitionPatchRelationships {
5535
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5536
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
5537
- }
5538
5544
  /**
5539
5545
  * JSON:API representation of exportDefinition entity.
5540
5546
  */
@@ -5547,16 +5553,27 @@ export interface JsonApiExportDefinitionPostOptionalId {
5547
5553
  * API identifier of an object
5548
5554
  */
5549
5555
  id?: string;
5550
- attributes?: JsonApiExportDefinitionPatchAttributes;
5551
- relationships?: JsonApiExportDefinitionPatchRelationships;
5556
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5557
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5552
5558
  }
5553
5559
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
5554
5560
  readonly EXPORT_DEFINITION: "exportDefinition";
5555
5561
  };
5556
5562
  export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
5563
+ export interface JsonApiExportDefinitionPostOptionalIdAttributes {
5564
+ title?: string;
5565
+ description?: string;
5566
+ tags?: Array<string>;
5567
+ requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
5568
+ areRelationsValid?: boolean;
5569
+ }
5557
5570
  export interface JsonApiExportDefinitionPostOptionalIdDocument {
5558
5571
  data: JsonApiExportDefinitionPostOptionalId;
5559
5572
  }
5573
+ export interface JsonApiExportDefinitionPostOptionalIdRelationships {
5574
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5575
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
5576
+ }
5560
5577
  /**
5561
5578
  * JSON:API representation of exportTemplate entity.
5562
5579
  */
@@ -5601,9 +5618,42 @@ export interface JsonApiExportTemplateOutAttributes {
5601
5618
  * User-facing name of the Slides template.
5602
5619
  */
5603
5620
  name: string;
5604
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5605
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5621
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5622
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5623
+ }
5624
+ /**
5625
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5626
+ */
5627
+ export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
5628
+ /**
5629
+ * Export types this template applies to.
5630
+ */
5631
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
5632
+ coverSlide?: CoverSlideTemplate | null;
5633
+ introSlide?: IntroSlideTemplate | null;
5634
+ sectionSlide?: SectionSlideTemplate | null;
5635
+ contentSlide?: ContentSlideTemplate | null;
5636
+ }
5637
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
5638
+ readonly PDF: "PDF";
5639
+ readonly PPTX: "PPTX";
5640
+ };
5641
+ export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
5642
+ /**
5643
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5644
+ */
5645
+ export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
5646
+ /**
5647
+ * Export types this template applies to.
5648
+ */
5649
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
5650
+ contentSlide?: ContentSlideTemplate | null;
5606
5651
  }
5652
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
5653
+ readonly PDF: "PDF";
5654
+ readonly PPTX: "PPTX";
5655
+ };
5656
+ export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
5607
5657
  export interface JsonApiExportTemplateOutDocument {
5608
5658
  data: JsonApiExportTemplateOut;
5609
5659
  links?: ObjectLinks;
@@ -5614,7 +5664,7 @@ export interface JsonApiExportTemplateOutDocument {
5614
5664
  export interface JsonApiExportTemplateOutList {
5615
5665
  data: Array<JsonApiExportTemplateOutWithLinks>;
5616
5666
  links?: ListLinks;
5617
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5667
+ meta?: JsonApiColorPaletteOutListMeta;
5618
5668
  }
5619
5669
  export interface JsonApiExportTemplateOutWithLinks {
5620
5670
  /**
@@ -5655,42 +5705,9 @@ export interface JsonApiExportTemplatePatchAttributes {
5655
5705
  * User-facing name of the Slides template.
5656
5706
  */
5657
5707
  name?: string;
5658
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5659
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5660
- }
5661
- /**
5662
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5663
- */
5664
- export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
5665
- /**
5666
- * Export types this template applies to.
5667
- */
5668
- appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
5669
- coverSlide?: CoverSlideTemplate | null;
5670
- introSlide?: IntroSlideTemplate | null;
5671
- sectionSlide?: SectionSlideTemplate | null;
5672
- contentSlide?: ContentSlideTemplate | null;
5673
- }
5674
- export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
5675
- readonly PDF: "PDF";
5676
- readonly PPTX: "PPTX";
5677
- };
5678
- export type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
5679
- /**
5680
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5681
- */
5682
- export interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
5683
- /**
5684
- * Export types this template applies to.
5685
- */
5686
- appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
5687
- contentSlide?: ContentSlideTemplate | null;
5708
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5709
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5688
5710
  }
5689
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
5690
- readonly PDF: "PDF";
5691
- readonly PPTX: "PPTX";
5692
- };
5693
- export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
5694
5711
  export interface JsonApiExportTemplatePatchDocument {
5695
5712
  data: JsonApiExportTemplatePatch;
5696
5713
  }
@@ -5779,7 +5796,7 @@ export interface JsonApiFactOutDocument {
5779
5796
  export interface JsonApiFactOutList {
5780
5797
  data: Array<JsonApiFactOutWithLinks>;
5781
5798
  links?: ListLinks;
5782
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5799
+ meta?: JsonApiColorPaletteOutListMeta;
5783
5800
  /**
5784
5801
  * Included resources
5785
5802
  */
@@ -5818,7 +5835,7 @@ export interface JsonApiFilterContextIn {
5818
5835
  * API identifier of an object
5819
5836
  */
5820
5837
  id: string;
5821
- attributes: JsonApiFilterContextOutAttributes;
5838
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
5822
5839
  }
5823
5840
  export declare const JsonApiFilterContextInTypeEnum: {
5824
5841
  readonly FILTER_CONTEXT: "filterContext";
@@ -5851,23 +5868,13 @@ export interface JsonApiFilterContextOut {
5851
5868
  */
5852
5869
  id: string;
5853
5870
  meta?: JsonApiVisualizationObjectOutMeta;
5854
- attributes: JsonApiFilterContextOutAttributes;
5871
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
5855
5872
  relationships?: JsonApiFilterContextOutRelationships;
5856
5873
  }
5857
5874
  export declare const JsonApiFilterContextOutTypeEnum: {
5858
5875
  readonly FILTER_CONTEXT: "filterContext";
5859
5876
  };
5860
5877
  export type JsonApiFilterContextOutTypeEnum = (typeof JsonApiFilterContextOutTypeEnum)[keyof typeof JsonApiFilterContextOutTypeEnum];
5861
- export interface JsonApiFilterContextOutAttributes {
5862
- title?: string;
5863
- description?: string;
5864
- tags?: Array<string>;
5865
- areRelationsValid?: boolean;
5866
- /**
5867
- * Free-form JSON content. Maximum supported length is 250000 characters.
5868
- */
5869
- content: object;
5870
- }
5871
5878
  export interface JsonApiFilterContextOutDocument {
5872
5879
  data: JsonApiFilterContextOut;
5873
5880
  links?: ObjectLinks;
@@ -5886,7 +5893,7 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
5886
5893
  export interface JsonApiFilterContextOutList {
5887
5894
  data: Array<JsonApiFilterContextOutWithLinks>;
5888
5895
  links?: ListLinks;
5889
- meta?: JsonApiWorkspaceAutomationOutListMeta;
5896
+ meta?: JsonApiColorPaletteOutListMeta;
5890
5897
  /**
5891
5898
  * Included resources
5892
5899
  */
@@ -5907,7 +5914,7 @@ export interface JsonApiFilterContextOutWithLinks {
5907
5914
  */
5908
5915
  id: string;
5909
5916
  meta?: JsonApiVisualizationObjectOutMeta;
5910
- attributes: JsonApiFilterContextOutAttributes;
5917
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
5911
5918
  relationships?: JsonApiFilterContextOutRelationships;
5912
5919
  links?: ObjectLinks;
5913
5920
  }
@@ -5948,7 +5955,7 @@ export interface JsonApiFilterContextPostOptionalId {
5948
5955
  * API identifier of an object
5949
5956
  */
5950
5957
  id?: string;
5951
- attributes: JsonApiFilterContextOutAttributes;
5958
+ attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
5952
5959
  }
5953
5960
  export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
5954
5961
  readonly FILTER_CONTEXT: "filterContext";
@@ -5969,16 +5976,34 @@ export interface JsonApiFilterViewIn {
5969
5976
  * API identifier of an object
5970
5977
  */
5971
5978
  id: string;
5972
- attributes: JsonApiFilterViewOutAttributes;
5973
- relationships?: JsonApiFilterViewPatchRelationships;
5979
+ attributes: JsonApiFilterViewInAttributes;
5980
+ relationships?: JsonApiFilterViewInRelationships;
5974
5981
  }
5975
5982
  export declare const JsonApiFilterViewInTypeEnum: {
5976
5983
  readonly FILTER_VIEW: "filterView";
5977
5984
  };
5978
5985
  export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
5986
+ export interface JsonApiFilterViewInAttributes {
5987
+ title: string;
5988
+ description?: string;
5989
+ tags?: Array<string>;
5990
+ areRelationsValid?: boolean;
5991
+ /**
5992
+ * Indicator whether the filter view should by applied by default.
5993
+ */
5994
+ isDefault?: boolean;
5995
+ /**
5996
+ * The respective filter context.
5997
+ */
5998
+ content: object;
5999
+ }
5979
6000
  export interface JsonApiFilterViewInDocument {
5980
6001
  data: JsonApiFilterViewIn;
5981
6002
  }
6003
+ export interface JsonApiFilterViewInRelationships {
6004
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
6005
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6006
+ }
5982
6007
  /**
5983
6008
  * JSON:API representation of filterView entity.
5984
6009
  */
@@ -5991,27 +6016,13 @@ export interface JsonApiFilterViewOut {
5991
6016
  * API identifier of an object
5992
6017
  */
5993
6018
  id: string;
5994
- attributes: JsonApiFilterViewOutAttributes;
5995
- relationships?: JsonApiFilterViewPatchRelationships;
6019
+ attributes: JsonApiFilterViewInAttributes;
6020
+ relationships?: JsonApiFilterViewInRelationships;
5996
6021
  }
5997
6022
  export declare const JsonApiFilterViewOutTypeEnum: {
5998
6023
  readonly FILTER_VIEW: "filterView";
5999
6024
  };
6000
6025
  export type JsonApiFilterViewOutTypeEnum = (typeof JsonApiFilterViewOutTypeEnum)[keyof typeof JsonApiFilterViewOutTypeEnum];
6001
- export interface JsonApiFilterViewOutAttributes {
6002
- title: string;
6003
- description?: string;
6004
- tags?: Array<string>;
6005
- areRelationsValid?: boolean;
6006
- /**
6007
- * Indicator whether the filter view should by applied by default.
6008
- */
6009
- isDefault?: boolean;
6010
- /**
6011
- * The respective filter context.
6012
- */
6013
- content: object;
6014
- }
6015
6026
  export interface JsonApiFilterViewOutDocument {
6016
6027
  data: JsonApiFilterViewOut;
6017
6028
  links?: ObjectLinks;
@@ -6030,7 +6041,7 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
6030
6041
  export interface JsonApiFilterViewOutList {
6031
6042
  data: Array<JsonApiFilterViewOutWithLinks>;
6032
6043
  links?: ListLinks;
6033
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6044
+ meta?: JsonApiColorPaletteOutListMeta;
6034
6045
  /**
6035
6046
  * Included resources
6036
6047
  */
@@ -6045,8 +6056,8 @@ export interface JsonApiFilterViewOutWithLinks {
6045
6056
  * API identifier of an object
6046
6057
  */
6047
6058
  id: string;
6048
- attributes: JsonApiFilterViewOutAttributes;
6049
- relationships?: JsonApiFilterViewPatchRelationships;
6059
+ attributes: JsonApiFilterViewInAttributes;
6060
+ relationships?: JsonApiFilterViewInRelationships;
6050
6061
  links?: ObjectLinks;
6051
6062
  }
6052
6063
  export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
@@ -6066,7 +6077,7 @@ export interface JsonApiFilterViewPatch {
6066
6077
  */
6067
6078
  id: string;
6068
6079
  attributes: JsonApiFilterViewPatchAttributes;
6069
- relationships?: JsonApiFilterViewPatchRelationships;
6080
+ relationships?: JsonApiFilterViewInRelationships;
6070
6081
  }
6071
6082
  export declare const JsonApiFilterViewPatchTypeEnum: {
6072
6083
  readonly FILTER_VIEW: "filterView";
@@ -6089,13 +6100,6 @@ export interface JsonApiFilterViewPatchAttributes {
6089
6100
  export interface JsonApiFilterViewPatchDocument {
6090
6101
  data: JsonApiFilterViewPatch;
6091
6102
  }
6092
- export interface JsonApiFilterViewPatchRelationships {
6093
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
6094
- user?: JsonApiFilterViewPatchRelationshipsUser;
6095
- }
6096
- export interface JsonApiFilterViewPatchRelationshipsUser {
6097
- data: JsonApiUserLinkage | null;
6098
- }
6099
6103
  /**
6100
6104
  * JSON:API representation of identityProvider entity.
6101
6105
  */
@@ -6108,12 +6112,69 @@ export interface JsonApiIdentityProviderIn {
6108
6112
  * API identifier of an object
6109
6113
  */
6110
6114
  id: string;
6111
- attributes?: JsonApiIdentityProviderPatchAttributes;
6115
+ attributes?: JsonApiIdentityProviderInAttributes;
6112
6116
  }
6113
6117
  export declare const JsonApiIdentityProviderInTypeEnum: {
6114
6118
  readonly IDENTITY_PROVIDER: "identityProvider";
6115
6119
  };
6116
6120
  export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
6121
+ export interface JsonApiIdentityProviderInAttributes {
6122
+ /**
6123
+ * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
6124
+ */
6125
+ identifiers?: Array<string>;
6126
+ /**
6127
+ * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
6128
+ */
6129
+ customClaimMapping?: {
6130
+ [key: string]: string;
6131
+ };
6132
+ /**
6133
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
6134
+ */
6135
+ samlMetadata?: string;
6136
+ /**
6137
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6138
+ */
6139
+ oauthClientId?: string;
6140
+ /**
6141
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6142
+ */
6143
+ oauthClientSecret?: string;
6144
+ /**
6145
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6146
+ */
6147
+ oauthIssuerLocation?: string;
6148
+ /**
6149
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
6150
+ */
6151
+ oauthIssuerId?: string;
6152
+ /**
6153
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
6154
+ */
6155
+ oauthSubjectIdClaim?: string;
6156
+ /**
6157
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
6158
+ */
6159
+ oauthCustomAuthAttributes?: {
6160
+ [key: string]: string;
6161
+ };
6162
+ /**
6163
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
6164
+ */
6165
+ oauthCustomScopes?: Array<string> | null;
6166
+ /**
6167
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
6168
+ */
6169
+ idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
6170
+ }
6171
+ export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
6172
+ readonly MANAGED_IDP: "MANAGED_IDP";
6173
+ readonly FIM_IDP: "FIM_IDP";
6174
+ readonly DEX_IDP: "DEX_IDP";
6175
+ readonly CUSTOM_IDP: "CUSTOM_IDP";
6176
+ };
6177
+ export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
6117
6178
  export interface JsonApiIdentityProviderInDocument {
6118
6179
  data: JsonApiIdentityProviderIn;
6119
6180
  }
@@ -6205,7 +6266,7 @@ export interface JsonApiIdentityProviderOutDocument {
6205
6266
  export interface JsonApiIdentityProviderOutList {
6206
6267
  data: Array<JsonApiIdentityProviderOutWithLinks>;
6207
6268
  links?: ListLinks;
6208
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6269
+ meta?: JsonApiColorPaletteOutListMeta;
6209
6270
  }
6210
6271
  export interface JsonApiIdentityProviderOutWithLinks {
6211
6272
  /**
@@ -6235,69 +6296,12 @@ export interface JsonApiIdentityProviderPatch {
6235
6296
  * API identifier of an object
6236
6297
  */
6237
6298
  id: string;
6238
- attributes?: JsonApiIdentityProviderPatchAttributes;
6299
+ attributes?: JsonApiIdentityProviderInAttributes;
6239
6300
  }
6240
6301
  export declare const JsonApiIdentityProviderPatchTypeEnum: {
6241
6302
  readonly IDENTITY_PROVIDER: "identityProvider";
6242
6303
  };
6243
6304
  export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
6244
- export interface JsonApiIdentityProviderPatchAttributes {
6245
- /**
6246
- * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
6247
- */
6248
- identifiers?: Array<string>;
6249
- /**
6250
- * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
6251
- */
6252
- customClaimMapping?: {
6253
- [key: string]: string;
6254
- };
6255
- /**
6256
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
6257
- */
6258
- samlMetadata?: string;
6259
- /**
6260
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6261
- */
6262
- oauthClientId?: string;
6263
- /**
6264
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6265
- */
6266
- oauthClientSecret?: string;
6267
- /**
6268
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6269
- */
6270
- oauthIssuerLocation?: string;
6271
- /**
6272
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
6273
- */
6274
- oauthIssuerId?: string;
6275
- /**
6276
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
6277
- */
6278
- oauthSubjectIdClaim?: string;
6279
- /**
6280
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
6281
- */
6282
- oauthCustomAuthAttributes?: {
6283
- [key: string]: string;
6284
- };
6285
- /**
6286
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
6287
- */
6288
- oauthCustomScopes?: Array<string> | null;
6289
- /**
6290
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
6291
- */
6292
- idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
6293
- }
6294
- export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
6295
- readonly MANAGED_IDP: "MANAGED_IDP";
6296
- readonly FIM_IDP: "FIM_IDP";
6297
- readonly DEX_IDP: "DEX_IDP";
6298
- readonly CUSTOM_IDP: "CUSTOM_IDP";
6299
- };
6300
- export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
6301
6305
  export interface JsonApiIdentityProviderPatchDocument {
6302
6306
  data: JsonApiIdentityProviderPatch;
6303
6307
  }
@@ -6313,7 +6317,7 @@ export interface JsonApiJwkIn {
6313
6317
  * API identifier of an object
6314
6318
  */
6315
6319
  id: string;
6316
- attributes?: JsonApiJwkPatchAttributes;
6320
+ attributes?: JsonApiJwkOutAttributes;
6317
6321
  }
6318
6322
  export declare const JsonApiJwkInTypeEnum: {
6319
6323
  readonly JWK: "jwk";
@@ -6334,12 +6338,15 @@ export interface JsonApiJwkOut {
6334
6338
  * API identifier of an object
6335
6339
  */
6336
6340
  id: string;
6337
- attributes?: JsonApiJwkPatchAttributes;
6341
+ attributes?: JsonApiJwkOutAttributes;
6338
6342
  }
6339
6343
  export declare const JsonApiJwkOutTypeEnum: {
6340
6344
  readonly JWK: "jwk";
6341
6345
  };
6342
6346
  export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
6347
+ export interface JsonApiJwkOutAttributes {
6348
+ content?: RsaSpecification;
6349
+ }
6343
6350
  export interface JsonApiJwkOutDocument {
6344
6351
  data: JsonApiJwkOut;
6345
6352
  links?: ObjectLinks;
@@ -6350,7 +6357,7 @@ export interface JsonApiJwkOutDocument {
6350
6357
  export interface JsonApiJwkOutList {
6351
6358
  data: Array<JsonApiJwkOutWithLinks>;
6352
6359
  links?: ListLinks;
6353
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6360
+ meta?: JsonApiColorPaletteOutListMeta;
6354
6361
  }
6355
6362
  export interface JsonApiJwkOutWithLinks {
6356
6363
  /**
@@ -6361,7 +6368,7 @@ export interface JsonApiJwkOutWithLinks {
6361
6368
  * API identifier of an object
6362
6369
  */
6363
6370
  id: string;
6364
- attributes?: JsonApiJwkPatchAttributes;
6371
+ attributes?: JsonApiJwkOutAttributes;
6365
6372
  links?: ObjectLinks;
6366
6373
  }
6367
6374
  export declare const JsonApiJwkOutWithLinksTypeEnum: {
@@ -6380,15 +6387,12 @@ export interface JsonApiJwkPatch {
6380
6387
  * API identifier of an object
6381
6388
  */
6382
6389
  id: string;
6383
- attributes?: JsonApiJwkPatchAttributes;
6390
+ attributes?: JsonApiJwkOutAttributes;
6384
6391
  }
6385
6392
  export declare const JsonApiJwkPatchTypeEnum: {
6386
6393
  readonly JWK: "jwk";
6387
6394
  };
6388
6395
  export type JsonApiJwkPatchTypeEnum = (typeof JsonApiJwkPatchTypeEnum)[keyof typeof JsonApiJwkPatchTypeEnum];
6389
- export interface JsonApiJwkPatchAttributes {
6390
- content?: RsaSpecification;
6391
- }
6392
6396
  export interface JsonApiJwkPatchDocument {
6393
6397
  data: JsonApiJwkPatch;
6394
6398
  }
@@ -6475,7 +6479,7 @@ export interface JsonApiLabelOutDocument {
6475
6479
  export interface JsonApiLabelOutList {
6476
6480
  data: Array<JsonApiLabelOutWithLinks>;
6477
6481
  links?: ListLinks;
6478
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6482
+ meta?: JsonApiColorPaletteOutListMeta;
6479
6483
  /**
6480
6484
  * Included resources
6481
6485
  */
@@ -6612,7 +6616,7 @@ export interface JsonApiLlmEndpointOutDocument {
6612
6616
  export interface JsonApiLlmEndpointOutList {
6613
6617
  data: Array<JsonApiLlmEndpointOutWithLinks>;
6614
6618
  links?: ListLinks;
6615
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6619
+ meta?: JsonApiColorPaletteOutListMeta;
6616
6620
  }
6617
6621
  export interface JsonApiLlmEndpointOutWithLinks {
6618
6622
  /**
@@ -6694,52 +6698,25 @@ export interface JsonApiMemoryItemIn {
6694
6698
  * API identifier of an object
6695
6699
  */
6696
6700
  id: string;
6697
- attributes: JsonApiMemoryItemInAttributes;
6701
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
6698
6702
  }
6699
6703
  export declare const JsonApiMemoryItemInTypeEnum: {
6700
6704
  readonly MEMORY_ITEM: "memoryItem";
6701
6705
  };
6702
6706
  export type JsonApiMemoryItemInTypeEnum = (typeof JsonApiMemoryItemInTypeEnum)[keyof typeof JsonApiMemoryItemInTypeEnum];
6703
- export interface JsonApiMemoryItemInAttributes {
6704
- title?: string;
6705
- description?: string;
6706
- tags?: Array<string>;
6707
- areRelationsValid?: boolean;
6707
+ export interface JsonApiMemoryItemInDocument {
6708
+ data: JsonApiMemoryItemIn;
6709
+ }
6710
+ /**
6711
+ * JSON:API representation of memoryItem entity.
6712
+ */
6713
+ export interface JsonApiMemoryItemOut {
6708
6714
  /**
6709
- * Strategy defining when the memory item should be applied
6715
+ * Object type
6710
6716
  */
6711
- strategy: JsonApiMemoryItemInAttributesStrategyEnum;
6717
+ type: JsonApiMemoryItemOutTypeEnum;
6712
6718
  /**
6713
- * The text that will be injected into the system prompt
6714
- */
6715
- instruction: string;
6716
- /**
6717
- * Set of unique strings used for semantic similarity filtering
6718
- */
6719
- keywords?: Array<string>;
6720
- /**
6721
- * Whether memory item is disabled
6722
- */
6723
- isDisabled?: boolean;
6724
- }
6725
- export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
6726
- readonly ALWAYS: "ALWAYS";
6727
- readonly AUTO: "AUTO";
6728
- };
6729
- export type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
6730
- export interface JsonApiMemoryItemInDocument {
6731
- data: JsonApiMemoryItemIn;
6732
- }
6733
- /**
6734
- * JSON:API representation of memoryItem entity.
6735
- */
6736
- export interface JsonApiMemoryItemOut {
6737
- /**
6738
- * Object type
6739
- */
6740
- type: JsonApiMemoryItemOutTypeEnum;
6741
- /**
6742
- * API identifier of an object
6719
+ * API identifier of an object
6743
6720
  */
6744
6721
  id: string;
6745
6722
  meta?: JsonApiVisualizationObjectOutMeta;
@@ -6793,7 +6770,7 @@ export interface JsonApiMemoryItemOutDocument {
6793
6770
  export interface JsonApiMemoryItemOutList {
6794
6771
  data: Array<JsonApiMemoryItemOutWithLinks>;
6795
6772
  links?: ListLinks;
6796
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6773
+ meta?: JsonApiColorPaletteOutListMeta;
6797
6774
  /**
6798
6775
  * Included resources
6799
6776
  */
@@ -6877,12 +6854,39 @@ export interface JsonApiMemoryItemPostOptionalId {
6877
6854
  * API identifier of an object
6878
6855
  */
6879
6856
  id?: string;
6880
- attributes: JsonApiMemoryItemInAttributes;
6857
+ attributes: JsonApiMemoryItemPostOptionalIdAttributes;
6881
6858
  }
6882
6859
  export declare const JsonApiMemoryItemPostOptionalIdTypeEnum: {
6883
6860
  readonly MEMORY_ITEM: "memoryItem";
6884
6861
  };
6885
6862
  export type JsonApiMemoryItemPostOptionalIdTypeEnum = (typeof JsonApiMemoryItemPostOptionalIdTypeEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdTypeEnum];
6863
+ export interface JsonApiMemoryItemPostOptionalIdAttributes {
6864
+ title?: string;
6865
+ description?: string;
6866
+ tags?: Array<string>;
6867
+ areRelationsValid?: boolean;
6868
+ /**
6869
+ * Strategy defining when the memory item should be applied
6870
+ */
6871
+ strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
6872
+ /**
6873
+ * The text that will be injected into the system prompt
6874
+ */
6875
+ instruction: string;
6876
+ /**
6877
+ * Set of unique strings used for semantic similarity filtering
6878
+ */
6879
+ keywords?: Array<string>;
6880
+ /**
6881
+ * Whether memory item is disabled
6882
+ */
6883
+ isDisabled?: boolean;
6884
+ }
6885
+ export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
6886
+ readonly ALWAYS: "ALWAYS";
6887
+ readonly AUTO: "AUTO";
6888
+ };
6889
+ export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
6886
6890
  export interface JsonApiMemoryItemPostOptionalIdDocument {
6887
6891
  data: JsonApiMemoryItemPostOptionalId;
6888
6892
  }
@@ -6898,20 +6902,12 @@ export interface JsonApiMetricIn {
6898
6902
  * API identifier of an object
6899
6903
  */
6900
6904
  id: string;
6901
- attributes: JsonApiMetricInAttributes;
6905
+ attributes: JsonApiMetricPostOptionalIdAttributes;
6902
6906
  }
6903
6907
  export declare const JsonApiMetricInTypeEnum: {
6904
6908
  readonly METRIC: "metric";
6905
6909
  };
6906
6910
  export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
6907
- export interface JsonApiMetricInAttributes {
6908
- title?: string;
6909
- description?: string;
6910
- tags?: Array<string>;
6911
- areRelationsValid?: boolean;
6912
- content: JsonApiMetricOutAttributesContent;
6913
- isHidden?: boolean;
6914
- }
6915
6911
  export interface JsonApiMetricInDocument {
6916
6912
  data: JsonApiMetricIn;
6917
6913
  }
@@ -6978,7 +6974,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
6978
6974
  export interface JsonApiMetricOutList {
6979
6975
  data: Array<JsonApiMetricOutWithLinks>;
6980
6976
  links?: ListLinks;
6981
- meta?: JsonApiWorkspaceAutomationOutListMeta;
6977
+ meta?: JsonApiColorPaletteOutListMeta;
6982
6978
  /**
6983
6979
  * Included resources
6984
6980
  */
@@ -7043,12 +7039,20 @@ export interface JsonApiMetricPostOptionalId {
7043
7039
  * API identifier of an object
7044
7040
  */
7045
7041
  id?: string;
7046
- attributes: JsonApiMetricInAttributes;
7042
+ attributes: JsonApiMetricPostOptionalIdAttributes;
7047
7043
  }
7048
7044
  export declare const JsonApiMetricPostOptionalIdTypeEnum: {
7049
7045
  readonly METRIC: "metric";
7050
7046
  };
7051
7047
  export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
7048
+ export interface JsonApiMetricPostOptionalIdAttributes {
7049
+ title?: string;
7050
+ description?: string;
7051
+ tags?: Array<string>;
7052
+ areRelationsValid?: boolean;
7053
+ content: JsonApiMetricOutAttributesContent;
7054
+ isHidden?: boolean;
7055
+ }
7052
7056
  export interface JsonApiMetricPostOptionalIdDocument {
7053
7057
  data: JsonApiMetricPostOptionalId;
7054
7058
  }
@@ -7102,7 +7106,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
7102
7106
  export interface JsonApiNotificationChannelIdentifierOutList {
7103
7107
  data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
7104
7108
  links?: ListLinks;
7105
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7109
+ meta?: JsonApiColorPaletteOutListMeta;
7106
7110
  }
7107
7111
  export interface JsonApiNotificationChannelIdentifierOutWithLinks {
7108
7112
  /**
@@ -7132,12 +7136,54 @@ export interface JsonApiNotificationChannelIn {
7132
7136
  * API identifier of an object
7133
7137
  */
7134
7138
  id: string;
7135
- attributes?: JsonApiNotificationChannelPatchAttributes;
7139
+ attributes?: JsonApiNotificationChannelInAttributes;
7136
7140
  }
7137
7141
  export declare const JsonApiNotificationChannelInTypeEnum: {
7138
7142
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
7139
7143
  };
7140
7144
  export type JsonApiNotificationChannelInTypeEnum = (typeof JsonApiNotificationChannelInTypeEnum)[keyof typeof JsonApiNotificationChannelInTypeEnum];
7145
+ export interface JsonApiNotificationChannelInAttributes {
7146
+ name?: string | null;
7147
+ description?: string | null;
7148
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
7149
+ /**
7150
+ * 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}
7151
+ */
7152
+ customDashboardUrl?: string;
7153
+ /**
7154
+ * 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
7155
+ */
7156
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
7157
+ /**
7158
+ * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
7159
+ */
7160
+ notificationSource?: string;
7161
+ /**
7162
+ * 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
7163
+ */
7164
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
7165
+ /**
7166
+ * 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
7167
+ */
7168
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
7169
+ }
7170
+ export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
7171
+ readonly HIDDEN: "HIDDEN";
7172
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
7173
+ readonly ALL: "ALL";
7174
+ };
7175
+ export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
7176
+ export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
7177
+ readonly CREATOR: "CREATOR";
7178
+ readonly INTERNAL: "INTERNAL";
7179
+ readonly EXTERNAL: "EXTERNAL";
7180
+ };
7181
+ export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
7182
+ export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
7183
+ readonly DISABLED: "DISABLED";
7184
+ readonly ENABLED: "ENABLED";
7185
+ };
7186
+ export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
7141
7187
  export interface JsonApiNotificationChannelInDocument {
7142
7188
  data: JsonApiNotificationChannelIn;
7143
7189
  }
@@ -7173,7 +7219,7 @@ export type JsonApiNotificationChannelOutTypeEnum = (typeof JsonApiNotificationC
7173
7219
  export interface JsonApiNotificationChannelOutAttributes {
7174
7220
  name?: string | null;
7175
7221
  description?: string | null;
7176
- destination?: JsonApiNotificationChannelPatchAttributesDestination;
7222
+ destination?: JsonApiNotificationChannelOutAttributesDestination;
7177
7223
  destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
7178
7224
  /**
7179
7225
  * 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}
@@ -7220,6 +7266,11 @@ export declare const JsonApiNotificationChannelOutAttributesInPlatformNotificati
7220
7266
  readonly ENABLED: "ENABLED";
7221
7267
  };
7222
7268
  export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum];
7269
+ /**
7270
+ * @type JsonApiNotificationChannelOutAttributesDestination
7271
+ * The destination where the notifications are to be sent.
7272
+ */
7273
+ export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7223
7274
  export interface JsonApiNotificationChannelOutDocument {
7224
7275
  data: JsonApiNotificationChannelOut;
7225
7276
  links?: ObjectLinks;
@@ -7230,7 +7281,7 @@ export interface JsonApiNotificationChannelOutDocument {
7230
7281
  export interface JsonApiNotificationChannelOutList {
7231
7282
  data: Array<JsonApiNotificationChannelOutWithLinks>;
7232
7283
  links?: ListLinks;
7233
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7284
+ meta?: JsonApiColorPaletteOutListMeta;
7234
7285
  }
7235
7286
  export interface JsonApiNotificationChannelOutWithLinks {
7236
7287
  /**
@@ -7260,59 +7311,12 @@ export interface JsonApiNotificationChannelPatch {
7260
7311
  * API identifier of an object
7261
7312
  */
7262
7313
  id: string;
7263
- attributes?: JsonApiNotificationChannelPatchAttributes;
7314
+ attributes?: JsonApiNotificationChannelInAttributes;
7264
7315
  }
7265
7316
  export declare const JsonApiNotificationChannelPatchTypeEnum: {
7266
7317
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
7267
7318
  };
7268
7319
  export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
7269
- export interface JsonApiNotificationChannelPatchAttributes {
7270
- name?: string | null;
7271
- description?: string | null;
7272
- destination?: JsonApiNotificationChannelPatchAttributesDestination;
7273
- /**
7274
- * 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}
7275
- */
7276
- customDashboardUrl?: string;
7277
- /**
7278
- * 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
7279
- */
7280
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
7281
- /**
7282
- * Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
7283
- */
7284
- notificationSource?: string;
7285
- /**
7286
- * 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
7287
- */
7288
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
7289
- /**
7290
- * 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
7291
- */
7292
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
7293
- }
7294
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
7295
- readonly HIDDEN: "HIDDEN";
7296
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
7297
- readonly ALL: "ALL";
7298
- };
7299
- export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
7300
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
7301
- readonly CREATOR: "CREATOR";
7302
- readonly INTERNAL: "INTERNAL";
7303
- readonly EXTERNAL: "EXTERNAL";
7304
- };
7305
- export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
7306
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
7307
- readonly DISABLED: "DISABLED";
7308
- readonly ENABLED: "ENABLED";
7309
- };
7310
- export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
7311
- /**
7312
- * @type JsonApiNotificationChannelPatchAttributesDestination
7313
- * The destination where the notifications are to be sent.
7314
- */
7315
- export type JsonApiNotificationChannelPatchAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7316
7320
  export interface JsonApiNotificationChannelPatchDocument {
7317
7321
  data: JsonApiNotificationChannelPatch;
7318
7322
  }
@@ -7328,7 +7332,7 @@ export interface JsonApiNotificationChannelPostOptionalId {
7328
7332
  * API identifier of an object
7329
7333
  */
7330
7334
  id?: string;
7331
- attributes?: JsonApiNotificationChannelPatchAttributes;
7335
+ attributes?: JsonApiNotificationChannelInAttributes;
7332
7336
  }
7333
7337
  export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
7334
7338
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
@@ -7349,16 +7353,36 @@ export interface JsonApiOrganizationIn {
7349
7353
  * API identifier of an object
7350
7354
  */
7351
7355
  id: string;
7352
- attributes?: JsonApiOrganizationPatchAttributes;
7353
- relationships?: JsonApiOrganizationPatchRelationships;
7356
+ attributes?: JsonApiOrganizationInAttributes;
7357
+ relationships?: JsonApiOrganizationInRelationships;
7354
7358
  }
7355
7359
  export declare const JsonApiOrganizationInTypeEnum: {
7356
7360
  readonly ORGANIZATION: "organization";
7357
7361
  };
7358
7362
  export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
7363
+ export interface JsonApiOrganizationInAttributes {
7364
+ name?: string | null;
7365
+ hostname?: string;
7366
+ allowedOrigins?: Array<string>;
7367
+ /**
7368
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7369
+ * @deprecated
7370
+ */
7371
+ earlyAccess?: string | null;
7372
+ /**
7373
+ * The early access feature identifiers. They are used to enable experimental features.
7374
+ */
7375
+ earlyAccessValues?: Array<string> | null;
7376
+ }
7359
7377
  export interface JsonApiOrganizationInDocument {
7360
7378
  data: JsonApiOrganizationIn;
7361
7379
  }
7380
+ export interface JsonApiOrganizationInRelationships {
7381
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
7382
+ }
7383
+ export interface JsonApiOrganizationInRelationshipsIdentityProvider {
7384
+ data: JsonApiIdentityProviderLinkage | null;
7385
+ }
7362
7386
  /**
7363
7387
  * JSON:API representation of organization entity.
7364
7388
  */
@@ -7427,9 +7451,15 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
7427
7451
  };
7428
7452
  export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
7429
7453
  export interface JsonApiOrganizationOutRelationships {
7430
- bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
7431
- bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
7432
- identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7454
+ bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7455
+ bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7456
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
7457
+ }
7458
+ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7459
+ data: JsonApiUserLinkage | null;
7460
+ }
7461
+ export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7462
+ data: JsonApiUserGroupLinkage | null;
7433
7463
  }
7434
7464
  /**
7435
7465
  * JSON:API representation of patching organization entity.
@@ -7443,36 +7473,16 @@ export interface JsonApiOrganizationPatch {
7443
7473
  * API identifier of an object
7444
7474
  */
7445
7475
  id: string;
7446
- attributes?: JsonApiOrganizationPatchAttributes;
7447
- relationships?: JsonApiOrganizationPatchRelationships;
7476
+ attributes?: JsonApiOrganizationInAttributes;
7477
+ relationships?: JsonApiOrganizationInRelationships;
7448
7478
  }
7449
7479
  export declare const JsonApiOrganizationPatchTypeEnum: {
7450
7480
  readonly ORGANIZATION: "organization";
7451
7481
  };
7452
7482
  export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
7453
- export interface JsonApiOrganizationPatchAttributes {
7454
- name?: string | null;
7455
- hostname?: string;
7456
- allowedOrigins?: Array<string>;
7457
- /**
7458
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7459
- * @deprecated
7460
- */
7461
- earlyAccess?: string | null;
7462
- /**
7463
- * The early access feature identifiers. They are used to enable experimental features.
7464
- */
7465
- earlyAccessValues?: Array<string> | null;
7466
- }
7467
7483
  export interface JsonApiOrganizationPatchDocument {
7468
7484
  data: JsonApiOrganizationPatch;
7469
7485
  }
7470
- export interface JsonApiOrganizationPatchRelationships {
7471
- identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7472
- }
7473
- export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
7474
- data: JsonApiIdentityProviderLinkage | null;
7475
- }
7476
7486
  /**
7477
7487
  * JSON:API representation of organizationSetting entity.
7478
7488
  */
@@ -7485,7 +7495,7 @@ export interface JsonApiOrganizationSettingIn {
7485
7495
  * API identifier of an object
7486
7496
  */
7487
7497
  id: string;
7488
- attributes?: JsonApiOrganizationSettingPatchAttributes;
7498
+ attributes?: JsonApiUserSettingInAttributes;
7489
7499
  }
7490
7500
  export declare const JsonApiOrganizationSettingInTypeEnum: {
7491
7501
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7506,7 +7516,7 @@ export interface JsonApiOrganizationSettingOut {
7506
7516
  * API identifier of an object
7507
7517
  */
7508
7518
  id: string;
7509
- attributes?: JsonApiOrganizationSettingPatchAttributes;
7519
+ attributes?: JsonApiUserSettingInAttributes;
7510
7520
  }
7511
7521
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
7512
7522
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7522,7 +7532,7 @@ export interface JsonApiOrganizationSettingOutDocument {
7522
7532
  export interface JsonApiOrganizationSettingOutList {
7523
7533
  data: Array<JsonApiOrganizationSettingOutWithLinks>;
7524
7534
  links?: ListLinks;
7525
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7535
+ meta?: JsonApiColorPaletteOutListMeta;
7526
7536
  }
7527
7537
  export interface JsonApiOrganizationSettingOutWithLinks {
7528
7538
  /**
@@ -7533,7 +7543,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
7533
7543
  * API identifier of an object
7534
7544
  */
7535
7545
  id: string;
7536
- attributes?: JsonApiOrganizationSettingPatchAttributes;
7546
+ attributes?: JsonApiUserSettingInAttributes;
7537
7547
  links?: ObjectLinks;
7538
7548
  }
7539
7549
  export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
@@ -7552,55 +7562,12 @@ export interface JsonApiOrganizationSettingPatch {
7552
7562
  * API identifier of an object
7553
7563
  */
7554
7564
  id: string;
7555
- attributes?: JsonApiOrganizationSettingPatchAttributes;
7565
+ attributes?: JsonApiUserSettingInAttributes;
7556
7566
  }
7557
7567
  export declare const JsonApiOrganizationSettingPatchTypeEnum: {
7558
7568
  readonly ORGANIZATION_SETTING: "organizationSetting";
7559
7569
  };
7560
7570
  export type JsonApiOrganizationSettingPatchTypeEnum = (typeof JsonApiOrganizationSettingPatchTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchTypeEnum];
7561
- export interface JsonApiOrganizationSettingPatchAttributes {
7562
- /**
7563
- * Free-form JSON content. Maximum supported length is 15000 characters.
7564
- */
7565
- content?: object;
7566
- type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
7567
- }
7568
- export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
7569
- readonly TIMEZONE: "TIMEZONE";
7570
- readonly ACTIVE_THEME: "ACTIVE_THEME";
7571
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
7572
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
7573
- readonly WHITE_LABELING: "WHITE_LABELING";
7574
- readonly LOCALE: "LOCALE";
7575
- readonly METADATA_LOCALE: "METADATA_LOCALE";
7576
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
7577
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
7578
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
7579
- readonly WEEK_START: "WEEK_START";
7580
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
7581
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
7582
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
7583
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
7584
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
7585
- readonly ALERT: "ALERT";
7586
- readonly SEPARATORS: "SEPARATORS";
7587
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
7588
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
7589
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
7590
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
7591
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
7592
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
7593
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
7594
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
7595
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
7596
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
7597
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
7598
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
7599
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
7600
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
7601
- readonly DATA_LOCALE: "DATA_LOCALE";
7602
- };
7603
- export type JsonApiOrganizationSettingPatchAttributesTypeEnum = (typeof JsonApiOrganizationSettingPatchAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
7604
7571
  export interface JsonApiOrganizationSettingPatchDocument {
7605
7572
  data: JsonApiOrganizationSettingPatch;
7606
7573
  }
@@ -7653,7 +7620,7 @@ export interface JsonApiThemeOutDocument {
7653
7620
  export interface JsonApiThemeOutList {
7654
7621
  data: Array<JsonApiThemeOutWithLinks>;
7655
7622
  links?: ListLinks;
7656
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7623
+ meta?: JsonApiColorPaletteOutListMeta;
7657
7624
  }
7658
7625
  export interface JsonApiThemeOutWithLinks {
7659
7626
  /**
@@ -7704,8 +7671,8 @@ export interface JsonApiUserDataFilterIn {
7704
7671
  * API identifier of an object
7705
7672
  */
7706
7673
  id: string;
7707
- attributes: JsonApiUserDataFilterOutAttributes;
7708
- relationships?: JsonApiUserDataFilterPatchRelationships;
7674
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
7675
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7709
7676
  }
7710
7677
  export declare const JsonApiUserDataFilterInTypeEnum: {
7711
7678
  readonly USER_DATA_FILTER: "userDataFilter";
@@ -7727,20 +7694,13 @@ export interface JsonApiUserDataFilterOut {
7727
7694
  */
7728
7695
  id: string;
7729
7696
  meta?: JsonApiVisualizationObjectOutMeta;
7730
- attributes: JsonApiUserDataFilterOutAttributes;
7697
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
7731
7698
  relationships?: JsonApiUserDataFilterOutRelationships;
7732
7699
  }
7733
7700
  export declare const JsonApiUserDataFilterOutTypeEnum: {
7734
7701
  readonly USER_DATA_FILTER: "userDataFilter";
7735
7702
  };
7736
7703
  export type JsonApiUserDataFilterOutTypeEnum = (typeof JsonApiUserDataFilterOutTypeEnum)[keyof typeof JsonApiUserDataFilterOutTypeEnum];
7737
- export interface JsonApiUserDataFilterOutAttributes {
7738
- title?: string;
7739
- description?: string;
7740
- tags?: Array<string>;
7741
- areRelationsValid?: boolean;
7742
- maql: string;
7743
- }
7744
7704
  export interface JsonApiUserDataFilterOutDocument {
7745
7705
  data: JsonApiUserDataFilterOut;
7746
7706
  links?: ObjectLinks;
@@ -7759,15 +7719,15 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
7759
7719
  export interface JsonApiUserDataFilterOutList {
7760
7720
  data: Array<JsonApiUserDataFilterOutWithLinks>;
7761
7721
  links?: ListLinks;
7762
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7722
+ meta?: JsonApiColorPaletteOutListMeta;
7763
7723
  /**
7764
7724
  * Included resources
7765
7725
  */
7766
7726
  included?: Array<JsonApiUserDataFilterOutIncludes>;
7767
7727
  }
7768
7728
  export interface JsonApiUserDataFilterOutRelationships {
7769
- user?: JsonApiFilterViewPatchRelationshipsUser;
7770
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
7729
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7730
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7771
7731
  facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
7772
7732
  attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
7773
7733
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
@@ -7784,7 +7744,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
7784
7744
  */
7785
7745
  id: string;
7786
7746
  meta?: JsonApiVisualizationObjectOutMeta;
7787
- attributes: JsonApiUserDataFilterOutAttributes;
7747
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
7788
7748
  relationships?: JsonApiUserDataFilterOutRelationships;
7789
7749
  links?: ObjectLinks;
7790
7750
  }
@@ -7805,7 +7765,7 @@ export interface JsonApiUserDataFilterPatch {
7805
7765
  */
7806
7766
  id: string;
7807
7767
  attributes: JsonApiUserDataFilterPatchAttributes;
7808
- relationships?: JsonApiUserDataFilterPatchRelationships;
7768
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7809
7769
  }
7810
7770
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
7811
7771
  readonly USER_DATA_FILTER: "userDataFilter";
@@ -7821,13 +7781,6 @@ export interface JsonApiUserDataFilterPatchAttributes {
7821
7781
  export interface JsonApiUserDataFilterPatchDocument {
7822
7782
  data: JsonApiUserDataFilterPatch;
7823
7783
  }
7824
- export interface JsonApiUserDataFilterPatchRelationships {
7825
- user?: JsonApiFilterViewPatchRelationshipsUser;
7826
- userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
7827
- }
7828
- export interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
7829
- data: JsonApiUserGroupLinkage | null;
7830
- }
7831
7784
  /**
7832
7785
  * JSON:API representation of userDataFilter entity.
7833
7786
  */
@@ -7840,16 +7793,27 @@ export interface JsonApiUserDataFilterPostOptionalId {
7840
7793
  * API identifier of an object
7841
7794
  */
7842
7795
  id?: string;
7843
- attributes: JsonApiUserDataFilterOutAttributes;
7844
- relationships?: JsonApiUserDataFilterPatchRelationships;
7796
+ attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
7797
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7845
7798
  }
7846
7799
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
7847
7800
  readonly USER_DATA_FILTER: "userDataFilter";
7848
7801
  };
7849
7802
  export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
7803
+ export interface JsonApiUserDataFilterPostOptionalIdAttributes {
7804
+ title?: string;
7805
+ description?: string;
7806
+ tags?: Array<string>;
7807
+ areRelationsValid?: boolean;
7808
+ maql: string;
7809
+ }
7850
7810
  export interface JsonApiUserDataFilterPostOptionalIdDocument {
7851
7811
  data: JsonApiUserDataFilterPostOptionalId;
7852
7812
  }
7813
+ export interface JsonApiUserDataFilterPostOptionalIdRelationships {
7814
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7815
+ userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7816
+ }
7853
7817
  /**
7854
7818
  * JSON:API representation of userGroup entity.
7855
7819
  */
@@ -7862,8 +7826,8 @@ export interface JsonApiUserGroupIn {
7862
7826
  * API identifier of an object
7863
7827
  */
7864
7828
  id: string;
7865
- attributes?: JsonApiUserGroupPatchAttributes;
7866
- relationships?: JsonApiUserGroupPatchRelationships;
7829
+ attributes?: JsonApiUserGroupOutAttributes;
7830
+ relationships?: JsonApiUserGroupOutRelationships;
7867
7831
  }
7868
7832
  export declare const JsonApiUserGroupInTypeEnum: {
7869
7833
  readonly USER_GROUP: "userGroup";
@@ -7895,13 +7859,16 @@ export interface JsonApiUserGroupOut {
7895
7859
  * API identifier of an object
7896
7860
  */
7897
7861
  id: string;
7898
- attributes?: JsonApiUserGroupPatchAttributes;
7899
- relationships?: JsonApiUserGroupPatchRelationships;
7862
+ attributes?: JsonApiUserGroupOutAttributes;
7863
+ relationships?: JsonApiUserGroupOutRelationships;
7900
7864
  }
7901
7865
  export declare const JsonApiUserGroupOutTypeEnum: {
7902
7866
  readonly USER_GROUP: "userGroup";
7903
7867
  };
7904
7868
  export type JsonApiUserGroupOutTypeEnum = (typeof JsonApiUserGroupOutTypeEnum)[keyof typeof JsonApiUserGroupOutTypeEnum];
7869
+ export interface JsonApiUserGroupOutAttributes {
7870
+ name?: string;
7871
+ }
7905
7872
  export interface JsonApiUserGroupOutDocument {
7906
7873
  data: JsonApiUserGroupOut;
7907
7874
  links?: ObjectLinks;
@@ -7916,12 +7883,15 @@ export interface JsonApiUserGroupOutDocument {
7916
7883
  export interface JsonApiUserGroupOutList {
7917
7884
  data: Array<JsonApiUserGroupOutWithLinks>;
7918
7885
  links?: ListLinks;
7919
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7886
+ meta?: JsonApiColorPaletteOutListMeta;
7920
7887
  /**
7921
7888
  * Included resources
7922
7889
  */
7923
7890
  included?: Array<JsonApiUserGroupOutWithLinks>;
7924
7891
  }
7892
+ export interface JsonApiUserGroupOutRelationships {
7893
+ parents?: JsonApiUserOutRelationshipsUserGroups;
7894
+ }
7925
7895
  export interface JsonApiUserGroupOutWithLinks {
7926
7896
  /**
7927
7897
  * Object type
@@ -7931,8 +7901,8 @@ export interface JsonApiUserGroupOutWithLinks {
7931
7901
  * API identifier of an object
7932
7902
  */
7933
7903
  id: string;
7934
- attributes?: JsonApiUserGroupPatchAttributes;
7935
- relationships?: JsonApiUserGroupPatchRelationships;
7904
+ attributes?: JsonApiUserGroupOutAttributes;
7905
+ relationships?: JsonApiUserGroupOutRelationships;
7936
7906
  links?: ObjectLinks;
7937
7907
  }
7938
7908
  export declare const JsonApiUserGroupOutWithLinksTypeEnum: {
@@ -7951,28 +7921,16 @@ export interface JsonApiUserGroupPatch {
7951
7921
  * API identifier of an object
7952
7922
  */
7953
7923
  id: string;
7954
- attributes?: JsonApiUserGroupPatchAttributes;
7955
- relationships?: JsonApiUserGroupPatchRelationships;
7924
+ attributes?: JsonApiUserGroupOutAttributes;
7925
+ relationships?: JsonApiUserGroupOutRelationships;
7956
7926
  }
7957
7927
  export declare const JsonApiUserGroupPatchTypeEnum: {
7958
7928
  readonly USER_GROUP: "userGroup";
7959
7929
  };
7960
7930
  export type JsonApiUserGroupPatchTypeEnum = (typeof JsonApiUserGroupPatchTypeEnum)[keyof typeof JsonApiUserGroupPatchTypeEnum];
7961
- export interface JsonApiUserGroupPatchAttributes {
7962
- name?: string;
7963
- }
7964
7931
  export interface JsonApiUserGroupPatchDocument {
7965
7932
  data: JsonApiUserGroupPatch;
7966
7933
  }
7967
- export interface JsonApiUserGroupPatchRelationships {
7968
- parents?: JsonApiUserGroupPatchRelationshipsParents;
7969
- }
7970
- export interface JsonApiUserGroupPatchRelationshipsParents {
7971
- /**
7972
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
7973
- */
7974
- data: Array<JsonApiUserGroupLinkage>;
7975
- }
7976
7934
  /**
7977
7935
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
7978
7936
  */
@@ -8017,7 +7975,7 @@ export interface JsonApiUserIdentifierOutDocument {
8017
7975
  export interface JsonApiUserIdentifierOutList {
8018
7976
  data: Array<JsonApiUserIdentifierOutWithLinks>;
8019
7977
  links?: ListLinks;
8020
- meta?: JsonApiWorkspaceAutomationOutListMeta;
7978
+ meta?: JsonApiColorPaletteOutListMeta;
8021
7979
  }
8022
7980
  export interface JsonApiUserIdentifierOutWithLinks {
8023
7981
  /**
@@ -8047,8 +8005,8 @@ export interface JsonApiUserIn {
8047
8005
  * API identifier of an object
8048
8006
  */
8049
8007
  id: string;
8050
- attributes?: JsonApiUserPatchAttributes;
8051
- relationships?: JsonApiUserPatchRelationships;
8008
+ attributes?: JsonApiUserOutAttributes;
8009
+ relationships?: JsonApiUserOutRelationships;
8052
8010
  }
8053
8011
  export declare const JsonApiUserInTypeEnum: {
8054
8012
  readonly USER: "user";
@@ -8080,13 +8038,19 @@ export interface JsonApiUserOut {
8080
8038
  * API identifier of an object
8081
8039
  */
8082
8040
  id: string;
8083
- attributes?: JsonApiUserPatchAttributes;
8084
- relationships?: JsonApiUserPatchRelationships;
8041
+ attributes?: JsonApiUserOutAttributes;
8042
+ relationships?: JsonApiUserOutRelationships;
8085
8043
  }
8086
8044
  export declare const JsonApiUserOutTypeEnum: {
8087
8045
  readonly USER: "user";
8088
8046
  };
8089
8047
  export type JsonApiUserOutTypeEnum = (typeof JsonApiUserOutTypeEnum)[keyof typeof JsonApiUserOutTypeEnum];
8048
+ export interface JsonApiUserOutAttributes {
8049
+ authenticationId?: string;
8050
+ firstname?: string;
8051
+ lastname?: string;
8052
+ email?: string;
8053
+ }
8090
8054
  export interface JsonApiUserOutDocument {
8091
8055
  data: JsonApiUserOut;
8092
8056
  links?: ObjectLinks;
@@ -8101,12 +8065,21 @@ export interface JsonApiUserOutDocument {
8101
8065
  export interface JsonApiUserOutList {
8102
8066
  data: Array<JsonApiUserOutWithLinks>;
8103
8067
  links?: ListLinks;
8104
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8068
+ meta?: JsonApiColorPaletteOutListMeta;
8105
8069
  /**
8106
8070
  * Included resources
8107
8071
  */
8108
8072
  included?: Array<JsonApiUserGroupOutWithLinks>;
8109
8073
  }
8074
+ export interface JsonApiUserOutRelationships {
8075
+ userGroups?: JsonApiUserOutRelationshipsUserGroups;
8076
+ }
8077
+ export interface JsonApiUserOutRelationshipsUserGroups {
8078
+ /**
8079
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8080
+ */
8081
+ data: Array<JsonApiUserGroupLinkage>;
8082
+ }
8110
8083
  export interface JsonApiUserOutWithLinks {
8111
8084
  /**
8112
8085
  * Object type
@@ -8116,8 +8089,8 @@ export interface JsonApiUserOutWithLinks {
8116
8089
  * API identifier of an object
8117
8090
  */
8118
8091
  id: string;
8119
- attributes?: JsonApiUserPatchAttributes;
8120
- relationships?: JsonApiUserPatchRelationships;
8092
+ attributes?: JsonApiUserOutAttributes;
8093
+ relationships?: JsonApiUserOutRelationships;
8121
8094
  links?: ObjectLinks;
8122
8095
  }
8123
8096
  export declare const JsonApiUserOutWithLinksTypeEnum: {
@@ -8136,25 +8109,16 @@ export interface JsonApiUserPatch {
8136
8109
  * API identifier of an object
8137
8110
  */
8138
8111
  id: string;
8139
- attributes?: JsonApiUserPatchAttributes;
8140
- relationships?: JsonApiUserPatchRelationships;
8112
+ attributes?: JsonApiUserOutAttributes;
8113
+ relationships?: JsonApiUserOutRelationships;
8141
8114
  }
8142
8115
  export declare const JsonApiUserPatchTypeEnum: {
8143
8116
  readonly USER: "user";
8144
8117
  };
8145
8118
  export type JsonApiUserPatchTypeEnum = (typeof JsonApiUserPatchTypeEnum)[keyof typeof JsonApiUserPatchTypeEnum];
8146
- export interface JsonApiUserPatchAttributes {
8147
- authenticationId?: string;
8148
- firstname?: string;
8149
- lastname?: string;
8150
- email?: string;
8151
- }
8152
8119
  export interface JsonApiUserPatchDocument {
8153
8120
  data: JsonApiUserPatch;
8154
8121
  }
8155
- export interface JsonApiUserPatchRelationships {
8156
- userGroups?: JsonApiUserGroupPatchRelationshipsParents;
8157
- }
8158
8122
  /**
8159
8123
  * JSON:API representation of userSetting entity.
8160
8124
  */
@@ -8167,12 +8131,55 @@ export interface JsonApiUserSettingIn {
8167
8131
  * API identifier of an object
8168
8132
  */
8169
8133
  id: string;
8170
- attributes?: JsonApiOrganizationSettingPatchAttributes;
8134
+ attributes?: JsonApiUserSettingInAttributes;
8171
8135
  }
8172
8136
  export declare const JsonApiUserSettingInTypeEnum: {
8173
8137
  readonly USER_SETTING: "userSetting";
8174
8138
  };
8175
8139
  export type JsonApiUserSettingInTypeEnum = (typeof JsonApiUserSettingInTypeEnum)[keyof typeof JsonApiUserSettingInTypeEnum];
8140
+ export interface JsonApiUserSettingInAttributes {
8141
+ /**
8142
+ * Free-form JSON content. Maximum supported length is 15000 characters.
8143
+ */
8144
+ content?: object;
8145
+ type?: JsonApiUserSettingInAttributesTypeEnum;
8146
+ }
8147
+ export declare const JsonApiUserSettingInAttributesTypeEnum: {
8148
+ readonly TIMEZONE: "TIMEZONE";
8149
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
8150
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
8151
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
8152
+ readonly WHITE_LABELING: "WHITE_LABELING";
8153
+ readonly LOCALE: "LOCALE";
8154
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
8155
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
8156
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
8157
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
8158
+ readonly WEEK_START: "WEEK_START";
8159
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
8160
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
8161
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
8162
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
8163
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
8164
+ readonly ALERT: "ALERT";
8165
+ readonly SEPARATORS: "SEPARATORS";
8166
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
8167
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
8168
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
8169
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
8170
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
8171
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
8172
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
8173
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
8174
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
8175
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
8176
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
8177
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
8178
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
8179
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
8180
+ readonly DATA_LOCALE: "DATA_LOCALE";
8181
+ };
8182
+ export type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
8176
8183
  export interface JsonApiUserSettingInDocument {
8177
8184
  data: JsonApiUserSettingIn;
8178
8185
  }
@@ -8188,7 +8195,7 @@ export interface JsonApiUserSettingOut {
8188
8195
  * API identifier of an object
8189
8196
  */
8190
8197
  id: string;
8191
- attributes?: JsonApiOrganizationSettingPatchAttributes;
8198
+ attributes?: JsonApiUserSettingInAttributes;
8192
8199
  }
8193
8200
  export declare const JsonApiUserSettingOutTypeEnum: {
8194
8201
  readonly USER_SETTING: "userSetting";
@@ -8204,7 +8211,7 @@ export interface JsonApiUserSettingOutDocument {
8204
8211
  export interface JsonApiUserSettingOutList {
8205
8212
  data: Array<JsonApiUserSettingOutWithLinks>;
8206
8213
  links?: ListLinks;
8207
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8214
+ meta?: JsonApiColorPaletteOutListMeta;
8208
8215
  }
8209
8216
  export interface JsonApiUserSettingOutWithLinks {
8210
8217
  /**
@@ -8215,7 +8222,7 @@ export interface JsonApiUserSettingOutWithLinks {
8215
8222
  * API identifier of an object
8216
8223
  */
8217
8224
  id: string;
8218
- attributes?: JsonApiOrganizationSettingPatchAttributes;
8225
+ attributes?: JsonApiUserSettingInAttributes;
8219
8226
  links?: ObjectLinks;
8220
8227
  }
8221
8228
  export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
@@ -8234,23 +8241,12 @@ export interface JsonApiVisualizationObjectIn {
8234
8241
  * API identifier of an object
8235
8242
  */
8236
8243
  id: string;
8237
- attributes: JsonApiVisualizationObjectInAttributes;
8244
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
8238
8245
  }
8239
8246
  export declare const JsonApiVisualizationObjectInTypeEnum: {
8240
8247
  readonly VISUALIZATION_OBJECT: "visualizationObject";
8241
8248
  };
8242
8249
  export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
8243
- export interface JsonApiVisualizationObjectInAttributes {
8244
- title?: string;
8245
- description?: string;
8246
- tags?: Array<string>;
8247
- areRelationsValid?: boolean;
8248
- /**
8249
- * Free-form JSON content. Maximum supported length is 250000 characters.
8250
- */
8251
- content: object;
8252
- isHidden?: boolean;
8253
- }
8254
8250
  export interface JsonApiVisualizationObjectInDocument {
8255
8251
  data: JsonApiVisualizationObjectIn;
8256
8252
  }
@@ -8312,7 +8308,7 @@ export interface JsonApiVisualizationObjectOutDocument {
8312
8308
  export interface JsonApiVisualizationObjectOutList {
8313
8309
  data: Array<JsonApiVisualizationObjectOutWithLinks>;
8314
8310
  links?: ListLinks;
8315
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8311
+ meta?: JsonApiColorPaletteOutListMeta;
8316
8312
  /**
8317
8313
  * Included resources
8318
8314
  */
@@ -8440,12 +8436,23 @@ export interface JsonApiVisualizationObjectPostOptionalId {
8440
8436
  * API identifier of an object
8441
8437
  */
8442
8438
  id?: string;
8443
- attributes: JsonApiVisualizationObjectInAttributes;
8439
+ attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
8444
8440
  }
8445
8441
  export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
8446
8442
  readonly VISUALIZATION_OBJECT: "visualizationObject";
8447
8443
  };
8448
8444
  export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
8445
+ export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
8446
+ title?: string;
8447
+ description?: string;
8448
+ tags?: Array<string>;
8449
+ areRelationsValid?: boolean;
8450
+ /**
8451
+ * Free-form JSON content. Maximum supported length is 250000 characters.
8452
+ */
8453
+ content: object;
8454
+ isHidden?: boolean;
8455
+ }
8449
8456
  export interface JsonApiVisualizationObjectPostOptionalIdDocument {
8450
8457
  data: JsonApiVisualizationObjectPostOptionalId;
8451
8458
  }
@@ -8478,23 +8485,20 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
8478
8485
  export interface JsonApiWorkspaceAutomationOutList {
8479
8486
  data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
8480
8487
  links?: ListLinks;
8481
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8488
+ meta?: JsonApiColorPaletteOutListMeta;
8482
8489
  /**
8483
8490
  * Included resources
8484
8491
  */
8485
8492
  included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
8486
8493
  }
8487
- export interface JsonApiWorkspaceAutomationOutListMeta {
8488
- page?: PageMetadata;
8489
- }
8490
8494
  export interface JsonApiWorkspaceAutomationOutRelationships {
8491
- workspace?: JsonApiWorkspacePatchRelationshipsParent;
8492
- notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
8493
- analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
8495
+ workspace?: JsonApiWorkspaceOutRelationshipsParent;
8496
+ notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
8497
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
8494
8498
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8495
8499
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8496
- exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
8497
- recipients?: JsonApiAutomationPatchRelationshipsRecipients;
8500
+ exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
8501
+ recipients?: JsonApiAutomationInRelationshipsRecipients;
8498
8502
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
8499
8503
  }
8500
8504
  export interface JsonApiWorkspaceAutomationOutWithLinks {
@@ -8586,7 +8590,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
8586
8590
  export interface JsonApiWorkspaceDataFilterOutList {
8587
8591
  data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
8588
8592
  links?: ListLinks;
8589
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8593
+ meta?: JsonApiColorPaletteOutListMeta;
8590
8594
  /**
8591
8595
  * Included resources
8592
8596
  */
@@ -8653,16 +8657,27 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
8653
8657
  * API identifier of an object
8654
8658
  */
8655
8659
  id: string;
8656
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8657
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8660
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
8661
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
8658
8662
  }
8659
8663
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
8660
8664
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
8661
8665
  };
8662
8666
  export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
8667
+ export interface JsonApiWorkspaceDataFilterSettingInAttributes {
8668
+ title?: string;
8669
+ description?: string;
8670
+ filterValues?: Array<string>;
8671
+ }
8663
8672
  export interface JsonApiWorkspaceDataFilterSettingInDocument {
8664
8673
  data: JsonApiWorkspaceDataFilterSettingIn;
8665
8674
  }
8675
+ export interface JsonApiWorkspaceDataFilterSettingInRelationships {
8676
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
8677
+ }
8678
+ export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
8679
+ data: JsonApiWorkspaceDataFilterLinkage | null;
8680
+ }
8666
8681
  /**
8667
8682
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
8668
8683
  */
@@ -8687,8 +8702,8 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
8687
8702
  */
8688
8703
  id: string;
8689
8704
  meta?: JsonApiVisualizationObjectOutMeta;
8690
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8691
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8705
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
8706
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
8692
8707
  }
8693
8708
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
8694
8709
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
@@ -8708,7 +8723,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
8708
8723
  export interface JsonApiWorkspaceDataFilterSettingOutList {
8709
8724
  data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
8710
8725
  links?: ListLinks;
8711
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8726
+ meta?: JsonApiColorPaletteOutListMeta;
8712
8727
  /**
8713
8728
  * Included resources
8714
8729
  */
@@ -8724,8 +8739,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
8724
8739
  */
8725
8740
  id: string;
8726
8741
  meta?: JsonApiVisualizationObjectOutMeta;
8727
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8728
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8742
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
8743
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
8729
8744
  links?: ObjectLinks;
8730
8745
  }
8731
8746
  export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
@@ -8744,27 +8759,16 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
8744
8759
  * API identifier of an object
8745
8760
  */
8746
8761
  id: string;
8747
- attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8748
- relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8762
+ attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
8763
+ relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
8749
8764
  }
8750
8765
  export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
8751
8766
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
8752
8767
  };
8753
8768
  export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
8754
- export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
8755
- title?: string;
8756
- description?: string;
8757
- filterValues?: Array<string>;
8758
- }
8759
8769
  export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
8760
8770
  data: JsonApiWorkspaceDataFilterSettingPatch;
8761
8771
  }
8762
- export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
8763
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
8764
- }
8765
- export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
8766
- data: JsonApiWorkspaceDataFilterLinkage | null;
8767
- }
8768
8772
  /**
8769
8773
  * JSON:API representation of workspace entity.
8770
8774
  */
@@ -8777,8 +8781,8 @@ export interface JsonApiWorkspaceIn {
8777
8781
  * API identifier of an object
8778
8782
  */
8779
8783
  id: string;
8780
- attributes?: JsonApiWorkspacePatchAttributes;
8781
- relationships?: JsonApiWorkspacePatchRelationships;
8784
+ attributes?: JsonApiWorkspaceOutAttributes;
8785
+ relationships?: JsonApiWorkspaceOutRelationships;
8782
8786
  }
8783
8787
  export declare const JsonApiWorkspaceInTypeEnum: {
8784
8788
  readonly WORKSPACE: "workspace";
@@ -8811,13 +8815,45 @@ export interface JsonApiWorkspaceOut {
8811
8815
  */
8812
8816
  id: string;
8813
8817
  meta?: JsonApiWorkspaceOutMeta;
8814
- attributes?: JsonApiWorkspacePatchAttributes;
8815
- relationships?: JsonApiWorkspacePatchRelationships;
8818
+ attributes?: JsonApiWorkspaceOutAttributes;
8819
+ relationships?: JsonApiWorkspaceOutRelationships;
8816
8820
  }
8817
8821
  export declare const JsonApiWorkspaceOutTypeEnum: {
8818
8822
  readonly WORKSPACE: "workspace";
8819
8823
  };
8820
8824
  export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
8825
+ export interface JsonApiWorkspaceOutAttributes {
8826
+ name?: string | null;
8827
+ /**
8828
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
8829
+ * @deprecated
8830
+ */
8831
+ earlyAccess?: string | null;
8832
+ /**
8833
+ * The early access feature identifiers. They are used to enable experimental features.
8834
+ */
8835
+ earlyAccessValues?: Array<string> | null;
8836
+ description?: string | null;
8837
+ /**
8838
+ * Custom prefix of entity identifiers in workspace
8839
+ */
8840
+ prefix?: string | null;
8841
+ cacheExtraLimit?: number;
8842
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
8843
+ }
8844
+ /**
8845
+ * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
8846
+ */
8847
+ export interface JsonApiWorkspaceOutAttributesDataSource {
8848
+ /**
8849
+ * The ID of the used data source.
8850
+ */
8851
+ id: string;
8852
+ /**
8853
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
8854
+ */
8855
+ schemaPath?: Array<string>;
8856
+ }
8821
8857
  export interface JsonApiWorkspaceOutDocument {
8822
8858
  data: JsonApiWorkspaceOut;
8823
8859
  links?: ObjectLinks;
@@ -8832,7 +8868,7 @@ export interface JsonApiWorkspaceOutDocument {
8832
8868
  export interface JsonApiWorkspaceOutList {
8833
8869
  data: Array<JsonApiWorkspaceOutWithLinks>;
8834
8870
  links?: ListLinks;
8835
- meta?: JsonApiWorkspaceAutomationOutListMeta;
8871
+ meta?: JsonApiColorPaletteOutListMeta;
8836
8872
  /**
8837
8873
  * Included resources
8838
8874
  */
@@ -8885,6 +8921,12 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
8885
8921
  */
8886
8922
  childrenCount: number;
8887
8923
  }
8924
+ export interface JsonApiWorkspaceOutRelationships {
8925
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
8926
+ }
8927
+ export interface JsonApiWorkspaceOutRelationshipsParent {
8928
+ data: JsonApiWorkspaceLinkage | null;
8929
+ }
8888
8930
  export interface JsonApiWorkspaceOutWithLinks {
8889
8931
  /**
8890
8932
  * Object type
@@ -8895,8 +8937,8 @@ export interface JsonApiWorkspaceOutWithLinks {
8895
8937
  */
8896
8938
  id: string;
8897
8939
  meta?: JsonApiWorkspaceOutMeta;
8898
- attributes?: JsonApiWorkspacePatchAttributes;
8899
- relationships?: JsonApiWorkspacePatchRelationships;
8940
+ attributes?: JsonApiWorkspaceOutAttributes;
8941
+ relationships?: JsonApiWorkspaceOutRelationships;
8900
8942
  links?: ObjectLinks;
8901
8943
  }
8902
8944
  export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
@@ -8915,54 +8957,16 @@ export interface JsonApiWorkspacePatch {
8915
8957
  * API identifier of an object
8916
8958
  */
8917
8959
  id: string;
8918
- attributes?: JsonApiWorkspacePatchAttributes;
8919
- relationships?: JsonApiWorkspacePatchRelationships;
8960
+ attributes?: JsonApiWorkspaceOutAttributes;
8961
+ relationships?: JsonApiWorkspaceOutRelationships;
8920
8962
  }
8921
8963
  export declare const JsonApiWorkspacePatchTypeEnum: {
8922
8964
  readonly WORKSPACE: "workspace";
8923
8965
  };
8924
8966
  export type JsonApiWorkspacePatchTypeEnum = (typeof JsonApiWorkspacePatchTypeEnum)[keyof typeof JsonApiWorkspacePatchTypeEnum];
8925
- export interface JsonApiWorkspacePatchAttributes {
8926
- name?: string | null;
8927
- /**
8928
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
8929
- * @deprecated
8930
- */
8931
- earlyAccess?: string | null;
8932
- /**
8933
- * The early access feature identifiers. They are used to enable experimental features.
8934
- */
8935
- earlyAccessValues?: Array<string> | null;
8936
- description?: string | null;
8937
- /**
8938
- * Custom prefix of entity identifiers in workspace
8939
- */
8940
- prefix?: string | null;
8941
- cacheExtraLimit?: number;
8942
- dataSource?: JsonApiWorkspacePatchAttributesDataSource;
8943
- }
8944
- /**
8945
- * The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
8946
- */
8947
- export interface JsonApiWorkspacePatchAttributesDataSource {
8948
- /**
8949
- * The ID of the used data source.
8950
- */
8951
- id: string;
8952
- /**
8953
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
8954
- */
8955
- schemaPath?: Array<string>;
8956
- }
8957
8967
  export interface JsonApiWorkspacePatchDocument {
8958
8968
  data: JsonApiWorkspacePatch;
8959
8969
  }
8960
- export interface JsonApiWorkspacePatchRelationships {
8961
- parent?: JsonApiWorkspacePatchRelationshipsParent;
8962
- }
8963
- export interface JsonApiWorkspacePatchRelationshipsParent {
8964
- data: JsonApiWorkspaceLinkage | null;
8965
- }
8966
8970
  /**
8967
8971
  * JSON:API representation of workspaceSetting entity.
8968
8972
  */
@@ -8975,7 +8979,7 @@ export interface JsonApiWorkspaceSettingIn {
8975
8979
  * API identifier of an object
8976
8980
  */
8977
8981
  id: string;
8978
- attributes?: JsonApiOrganizationSettingPatchAttributes;
8982
+ attributes?: JsonApiUserSettingInAttributes;
8979
8983
  }
8980
8984
  export declare const JsonApiWorkspaceSettingInTypeEnum: {
8981
8985
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8997,7 +9001,7 @@ export interface JsonApiWorkspaceSettingOut {
8997
9001
  */
8998
9002
  id: string;
8999
9003
  meta?: JsonApiVisualizationObjectOutMeta;
9000
- attributes?: JsonApiOrganizationSettingPatchAttributes;
9004
+ attributes?: JsonApiUserSettingInAttributes;
9001
9005
  }
9002
9006
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
9003
9007
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9013,7 +9017,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
9013
9017
  export interface JsonApiWorkspaceSettingOutList {
9014
9018
  data: Array<JsonApiWorkspaceSettingOutWithLinks>;
9015
9019
  links?: ListLinks;
9016
- meta?: JsonApiWorkspaceAutomationOutListMeta;
9020
+ meta?: JsonApiColorPaletteOutListMeta;
9017
9021
  }
9018
9022
  export interface JsonApiWorkspaceSettingOutWithLinks {
9019
9023
  /**
@@ -9025,7 +9029,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
9025
9029
  */
9026
9030
  id: string;
9027
9031
  meta?: JsonApiVisualizationObjectOutMeta;
9028
- attributes?: JsonApiOrganizationSettingPatchAttributes;
9032
+ attributes?: JsonApiUserSettingInAttributes;
9029
9033
  links?: ObjectLinks;
9030
9034
  }
9031
9035
  export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
@@ -9044,7 +9048,7 @@ export interface JsonApiWorkspaceSettingPatch {
9044
9048
  * API identifier of an object
9045
9049
  */
9046
9050
  id: string;
9047
- attributes?: JsonApiOrganizationSettingPatchAttributes;
9051
+ attributes?: JsonApiUserSettingInAttributes;
9048
9052
  }
9049
9053
  export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
9050
9054
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9065,7 +9069,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
9065
9069
  * API identifier of an object
9066
9070
  */
9067
9071
  id?: string;
9068
- attributes?: JsonApiOrganizationSettingPatchAttributes;
9072
+ attributes?: JsonApiUserSettingInAttributes;
9069
9073
  }
9070
9074
  export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
9071
9075
  readonly WORKSPACE_SETTING: "workspaceSetting";