@gooddata/api-client-tiger 11.5.0-alpha.4 → 11.5.0-alpha.6

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.
@@ -177,7 +177,6 @@ export declare const ApiEntitlementNameEnum: {
177
177
  readonly EXTRA_CACHE: "ExtraCache";
178
178
  readonly HIPAA: "Hipaa";
179
179
  readonly PDF_EXPORTS: "PdfExports";
180
- readonly MANAGED_OIDC: "ManagedOIDC";
181
180
  readonly UI_LOCALIZATION: "UiLocalization";
182
181
  readonly TIER: "Tier";
183
182
  readonly USER_COUNT: "UserCount";
@@ -342,6 +341,7 @@ export interface AutomationImageExport {
342
341
  * Additional information for the automation.
343
342
  */
344
343
  export interface AutomationMetadata {
344
+ [key: string]: any;
345
345
  widget?: string;
346
346
  visibleFilters?: Array<VisibleFilter>;
347
347
  }
@@ -1997,18 +1997,6 @@ export interface DeclarativeOrganizationInfo {
1997
1997
  */
1998
1998
  hostname: string;
1999
1999
  allowedOrigins?: Array<string>;
2000
- /**
2001
- * URI of the authentication provider.
2002
- */
2003
- oauthIssuerLocation?: string;
2004
- /**
2005
- * Identifier of the authentication provider
2006
- */
2007
- oauthClientId?: string;
2008
- /**
2009
- * Communication secret of the authentication provider (never returned back).
2010
- */
2011
- oauthClientSecret?: string;
2012
2000
  permissions: Array<DeclarativeOrganizationPermission>;
2013
2001
  /**
2014
2002
  * Early access defined on level Organization
@@ -2019,24 +2007,6 @@ export interface DeclarativeOrganizationInfo {
2019
2007
  * Early access defined on level Organization
2020
2008
  */
2021
2009
  earlyAccessValues?: Array<string>;
2022
- /**
2023
- * 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.
2024
- */
2025
- oauthIssuerId?: string;
2026
- /**
2027
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
2028
- */
2029
- oauthSubjectIdClaim?: string;
2030
- /**
2031
- * 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.
2032
- */
2033
- oauthCustomAuthAttributes?: {
2034
- [key: string]: string;
2035
- };
2036
- /**
2037
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
2038
- */
2039
- oauthCustomScopes?: Array<string> | null;
2040
2010
  /**
2041
2011
  * A list of organization settings.
2042
2012
  */
@@ -2760,7 +2730,6 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
2760
2730
  readonly EXTRA_CACHE: "ExtraCache";
2761
2731
  readonly HIPAA: "Hipaa";
2762
2732
  readonly PDF_EXPORTS: "PdfExports";
2763
- readonly MANAGED_OIDC: "ManagedOIDC";
2764
2733
  readonly UI_LOCALIZATION: "UiLocalization";
2765
2734
  readonly TIER: "Tier";
2766
2735
  readonly USER_COUNT: "UserCount";
@@ -2902,6 +2871,10 @@ export interface GenerateLdmRequest {
2902
2871
  * Columns starting with this prefix will be considered as references. The prefix is then followed by the value of `separator` parameter. Given the reference prefix is `r` and separator is `__`, the columns with name like `r__customer__customer_id` will be considered as references to customer_id in customer table.
2903
2872
  */
2904
2873
  referencePrefix?: string;
2874
+ /**
2875
+ * Columns starting with this prefix will be considered as references to date dataset. The prefix is then followed by the value of `separator` parameter. Given the reference prefix is `d` and separator is `__`, the columns with name like `d__date` will be considered as reference to date dataset. There can be also second separator and granularity suffix, e.g. `d__date__day` to create attribute reference to exact date dataset and granularity.
2876
+ */
2877
+ dateReferencePrefix?: string;
2905
2878
  /**
2906
2879
  * Columns starting with this prefix will be considered as grain references. The prefix is then followed by the value of `separator` parameter. For composite references, the reference is multivalue if at least one column is multivalue. Given the reference prefix is `grr` and separator is `__`, the columns with name like `grr__customer__customer_id` will be considered as grain references to customer_id in customer table.
2907
2880
  */
@@ -3152,7 +3125,7 @@ export interface JsonApiAggregatedFactOut {
3152
3125
  * API identifier of an object
3153
3126
  */
3154
3127
  id: string;
3155
- meta?: JsonApiDatasetOutMeta;
3128
+ meta?: JsonApiVisualizationObjectOutMeta;
3156
3129
  attributes: JsonApiAggregatedFactOutAttributes;
3157
3130
  relationships?: JsonApiAggregatedFactOutRelationships;
3158
3131
  }
@@ -3202,17 +3175,14 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
3202
3175
  export interface JsonApiAggregatedFactOutList {
3203
3176
  data: Array<JsonApiAggregatedFactOutWithLinks>;
3204
3177
  links?: ListLinks;
3205
- meta?: JsonApiAggregatedFactOutListMeta;
3178
+ meta?: JsonApiColorPaletteOutListMeta;
3206
3179
  /**
3207
3180
  * Included resources
3208
3181
  */
3209
3182
  included?: Array<JsonApiAggregatedFactOutIncludes>;
3210
3183
  }
3211
- export interface JsonApiAggregatedFactOutListMeta {
3212
- page?: PageMetadata;
3213
- }
3214
3184
  export interface JsonApiAggregatedFactOutRelationships {
3215
- dataset?: JsonApiFactOutRelationshipsDataset;
3185
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
3216
3186
  sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
3217
3187
  }
3218
3188
  export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
@@ -3227,7 +3197,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
3227
3197
  * API identifier of an object
3228
3198
  */
3229
3199
  id: string;
3230
- meta?: JsonApiDatasetOutMeta;
3200
+ meta?: JsonApiVisualizationObjectOutMeta;
3231
3201
  attributes: JsonApiAggregatedFactOutAttributes;
3232
3202
  relationships?: JsonApiAggregatedFactOutRelationships;
3233
3203
  links?: ObjectLinks;
@@ -3318,7 +3288,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
3318
3288
  export interface JsonApiAnalyticalDashboardOutList {
3319
3289
  data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
3320
3290
  links?: ListLinks;
3321
- meta?: JsonApiAggregatedFactOutListMeta;
3291
+ meta?: JsonApiColorPaletteOutListMeta;
3322
3292
  /**
3323
3293
  * Included resources
3324
3294
  */
@@ -3329,7 +3299,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
3329
3299
  * List of valid permissions for a logged-in user.
3330
3300
  */
3331
3301
  permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
3332
- origin?: JsonApiDatasetOutMetaOrigin;
3302
+ origin?: JsonApiVisualizationObjectOutMetaOrigin;
3333
3303
  accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
3334
3304
  }
3335
3305
  export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
@@ -3351,7 +3321,7 @@ export interface JsonApiAnalyticalDashboardOutRelationships {
3351
3321
  analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
3352
3322
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
3353
3323
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
3354
- datasets?: JsonApiDatasetOutRelationshipsReferences;
3324
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
3355
3325
  filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
3356
3326
  dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
3357
3327
  }
@@ -3503,7 +3473,7 @@ export interface JsonApiApiTokenOutDocument {
3503
3473
  export interface JsonApiApiTokenOutList {
3504
3474
  data: Array<JsonApiApiTokenOutWithLinks>;
3505
3475
  links?: ListLinks;
3506
- meta?: JsonApiAggregatedFactOutListMeta;
3476
+ meta?: JsonApiColorPaletteOutListMeta;
3507
3477
  }
3508
3478
  export interface JsonApiApiTokenOutWithLinks {
3509
3479
  /**
@@ -3565,7 +3535,7 @@ export interface JsonApiAttributeHierarchyOut {
3565
3535
  * API identifier of an object
3566
3536
  */
3567
3537
  id: string;
3568
- meta?: JsonApiDatasetOutMeta;
3538
+ meta?: JsonApiVisualizationObjectOutMeta;
3569
3539
  attributes?: JsonApiAttributeHierarchyOutAttributes;
3570
3540
  relationships?: JsonApiAttributeHierarchyOutRelationships;
3571
3541
  }
@@ -3603,7 +3573,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
3603
3573
  export interface JsonApiAttributeHierarchyOutList {
3604
3574
  data: Array<JsonApiAttributeHierarchyOutWithLinks>;
3605
3575
  links?: ListLinks;
3606
- meta?: JsonApiAggregatedFactOutListMeta;
3576
+ meta?: JsonApiColorPaletteOutListMeta;
3607
3577
  /**
3608
3578
  * Included resources
3609
3579
  */
@@ -3612,7 +3582,7 @@ export interface JsonApiAttributeHierarchyOutList {
3612
3582
  export interface JsonApiAttributeHierarchyOutRelationships {
3613
3583
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3614
3584
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3615
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
3585
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
3616
3586
  }
3617
3587
  export interface JsonApiAttributeHierarchyOutWithLinks {
3618
3588
  /**
@@ -3623,7 +3593,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
3623
3593
  * API identifier of an object
3624
3594
  */
3625
3595
  id: string;
3626
- meta?: JsonApiDatasetOutMeta;
3596
+ meta?: JsonApiVisualizationObjectOutMeta;
3627
3597
  attributes?: JsonApiAttributeHierarchyOutAttributes;
3628
3598
  relationships?: JsonApiAttributeHierarchyOutRelationships;
3629
3599
  links?: ObjectLinks;
@@ -3686,7 +3656,7 @@ export interface JsonApiAttributeOut {
3686
3656
  * API identifier of an object
3687
3657
  */
3688
3658
  id: string;
3689
- meta?: JsonApiDatasetOutMeta;
3659
+ meta?: JsonApiVisualizationObjectOutMeta;
3690
3660
  attributes?: JsonApiAttributeOutAttributes;
3691
3661
  relationships?: JsonApiAttributeOutRelationships;
3692
3662
  }
@@ -3758,14 +3728,14 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
3758
3728
  export interface JsonApiAttributeOutList {
3759
3729
  data: Array<JsonApiAttributeOutWithLinks>;
3760
3730
  links?: ListLinks;
3761
- meta?: JsonApiAggregatedFactOutListMeta;
3731
+ meta?: JsonApiColorPaletteOutListMeta;
3762
3732
  /**
3763
3733
  * Included resources
3764
3734
  */
3765
3735
  included?: Array<JsonApiAttributeOutIncludes>;
3766
3736
  }
3767
3737
  export interface JsonApiAttributeOutRelationships {
3768
- dataset?: JsonApiFactOutRelationshipsDataset;
3738
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
3769
3739
  defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
3770
3740
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
3771
3741
  attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
@@ -3776,6 +3746,9 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
3776
3746
  */
3777
3747
  data: Array<JsonApiAttributeHierarchyLinkage>;
3778
3748
  }
3749
+ export interface JsonApiAttributeOutRelationshipsDataset {
3750
+ data: JsonApiDatasetLinkage | null;
3751
+ }
3779
3752
  export interface JsonApiAttributeOutRelationshipsDefaultView {
3780
3753
  data: JsonApiLabelLinkage | null;
3781
3754
  }
@@ -3788,7 +3761,7 @@ export interface JsonApiAttributeOutWithLinks {
3788
3761
  * API identifier of an object
3789
3762
  */
3790
3763
  id: string;
3791
- meta?: JsonApiDatasetOutMeta;
3764
+ meta?: JsonApiVisualizationObjectOutMeta;
3792
3765
  attributes?: JsonApiAttributeOutAttributes;
3793
3766
  relationships?: JsonApiAttributeOutRelationships;
3794
3767
  links?: ObjectLinks;
@@ -3842,7 +3815,7 @@ export interface JsonApiAutomationOut {
3842
3815
  * API identifier of an object
3843
3816
  */
3844
3817
  id: string;
3845
- meta?: JsonApiDatasetOutMeta;
3818
+ meta?: JsonApiVisualizationObjectOutMeta;
3846
3819
  attributes?: JsonApiAutomationOutAttributes;
3847
3820
  relationships?: JsonApiAutomationOutRelationships;
3848
3821
  }
@@ -3859,7 +3832,7 @@ export interface JsonApiAutomationOutAttributes {
3859
3832
  * Additional details to be included in the automated message.
3860
3833
  */
3861
3834
  details?: object;
3862
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
3835
+ metadata?: JsonApiAutomationPatchAttributesMetadata | null;
3863
3836
  /**
3864
3837
  * Current state of the automation.
3865
3838
  */
@@ -3868,18 +3841,18 @@ export interface JsonApiAutomationOutAttributes {
3868
3841
  * Specify automation evaluation mode.
3869
3842
  */
3870
3843
  evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
3871
- schedule?: JsonApiAutomationOutAttributesSchedule;
3872
- alert?: JsonApiAutomationOutAttributesAlert;
3873
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
3874
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
3875
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
3876
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
3877
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
3878
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
3844
+ schedule?: JsonApiAutomationPatchAttributesSchedule;
3845
+ alert?: JsonApiAutomationPatchAttributesAlert;
3846
+ tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
3847
+ visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
3848
+ imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
3849
+ rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
3850
+ slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
3851
+ dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
3879
3852
  /**
3880
3853
  * External recipients of the automation action results.
3881
3854
  */
3882
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
3855
+ externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
3883
3856
  createdAt?: string;
3884
3857
  modifiedAt?: string;
3885
3858
  }
@@ -3893,68 +3866,6 @@ export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
3893
3866
  readonly PER_RECIPIENT: "PER_RECIPIENT";
3894
3867
  };
3895
3868
  export type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
3896
- export interface JsonApiAutomationOutAttributesAlert {
3897
- execution: AlertAfm;
3898
- condition: AlertCondition;
3899
- /**
3900
- * 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.
3901
- */
3902
- trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
3903
- }
3904
- export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
3905
- readonly ALWAYS: "ALWAYS";
3906
- readonly ONCE: "ONCE";
3907
- };
3908
- export type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
3909
- export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
3910
- requestPayload: DashboardTabularExportRequestV2;
3911
- }
3912
- export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
3913
- /**
3914
- * E-mail address to send notifications from.
3915
- */
3916
- email: string;
3917
- }
3918
- export interface JsonApiAutomationOutAttributesImageExportsInner {
3919
- requestPayload: ImageExportRequest;
3920
- }
3921
- /**
3922
- * Additional information for the automation.
3923
- */
3924
- export interface JsonApiAutomationOutAttributesMetadata {
3925
- widget?: string;
3926
- visibleFilters?: Array<VisibleFilter>;
3927
- }
3928
- export interface JsonApiAutomationOutAttributesRawExportsInner {
3929
- requestPayload: RawExportAutomationRequest;
3930
- }
3931
- export interface JsonApiAutomationOutAttributesSchedule {
3932
- /**
3933
- * 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.
3934
- */
3935
- cron: string;
3936
- /**
3937
- * Human-readable description of the cron expression.
3938
- */
3939
- cronDescription?: string;
3940
- /**
3941
- * Timezone in which the schedule is defined.
3942
- */
3943
- timezone: string;
3944
- /**
3945
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
3946
- */
3947
- firstRun?: string;
3948
- }
3949
- export interface JsonApiAutomationOutAttributesSlidesExportsInner {
3950
- requestPayload: SlidesExportRequest;
3951
- }
3952
- export interface JsonApiAutomationOutAttributesTabularExportsInner {
3953
- requestPayload: TabularExportRequest;
3954
- }
3955
- export interface JsonApiAutomationOutAttributesVisualExportsInner {
3956
- requestPayload: VisualExportRequest;
3957
- }
3958
3869
  export interface JsonApiAutomationOutDocument {
3959
3870
  data: JsonApiAutomationOut;
3960
3871
  links?: ObjectLinks;
@@ -3973,19 +3884,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
3973
3884
  export interface JsonApiAutomationOutList {
3974
3885
  data: Array<JsonApiAutomationOutWithLinks>;
3975
3886
  links?: ListLinks;
3976
- meta?: JsonApiAggregatedFactOutListMeta;
3887
+ meta?: JsonApiColorPaletteOutListMeta;
3977
3888
  /**
3978
3889
  * Included resources
3979
3890
  */
3980
3891
  included?: Array<JsonApiAutomationOutIncludes>;
3981
3892
  }
3982
3893
  export interface JsonApiAutomationOutRelationships {
3983
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
3984
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
3894
+ notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
3895
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
3985
3896
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3986
3897
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
3987
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
3988
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
3898
+ exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
3899
+ recipients?: JsonApiAutomationPatchRelationshipsRecipients;
3989
3900
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
3990
3901
  }
3991
3902
  export interface JsonApiAutomationOutRelationshipsAutomationResults {
@@ -3994,21 +3905,6 @@ export interface JsonApiAutomationOutRelationshipsAutomationResults {
3994
3905
  */
3995
3906
  data: Array<JsonApiAutomationResultLinkage>;
3996
3907
  }
3997
- export interface JsonApiAutomationOutRelationshipsExportDefinitions {
3998
- /**
3999
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4000
- */
4001
- data: Array<JsonApiExportDefinitionLinkage>;
4002
- }
4003
- export interface JsonApiAutomationOutRelationshipsNotificationChannel {
4004
- data: JsonApiNotificationChannelLinkage | null;
4005
- }
4006
- export interface JsonApiAutomationOutRelationshipsRecipients {
4007
- /**
4008
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4009
- */
4010
- data: Array<JsonApiUserLinkage>;
4011
- }
4012
3908
  export interface JsonApiAutomationOutWithLinks {
4013
3909
  /**
4014
3910
  * Object type
@@ -4018,7 +3914,7 @@ export interface JsonApiAutomationOutWithLinks {
4018
3914
  * API identifier of an object
4019
3915
  */
4020
3916
  id: string;
4021
- meta?: JsonApiDatasetOutMeta;
3917
+ meta?: JsonApiVisualizationObjectOutMeta;
4022
3918
  attributes?: JsonApiAutomationOutAttributes;
4023
3919
  relationships?: JsonApiAutomationOutRelationships;
4024
3920
  links?: ObjectLinks;
@@ -4055,7 +3951,7 @@ export interface JsonApiAutomationPatchAttributes {
4055
3951
  * Additional details to be included in the automated message.
4056
3952
  */
4057
3953
  details?: object;
4058
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
3954
+ metadata?: JsonApiAutomationPatchAttributesMetadata | null;
4059
3955
  /**
4060
3956
  * Current state of the automation.
4061
3957
  */
@@ -4064,18 +3960,18 @@ export interface JsonApiAutomationPatchAttributes {
4064
3960
  * Specify automation evaluation mode.
4065
3961
  */
4066
3962
  evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
4067
- schedule?: JsonApiAutomationOutAttributesSchedule;
4068
- alert?: JsonApiAutomationOutAttributesAlert;
4069
- tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
4070
- visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
4071
- imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
4072
- rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
4073
- slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
4074
- dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
3963
+ schedule?: JsonApiAutomationPatchAttributesSchedule;
3964
+ alert?: JsonApiAutomationPatchAttributesAlert;
3965
+ tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
3966
+ visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
3967
+ imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
3968
+ rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
3969
+ slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
3970
+ dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
4075
3971
  /**
4076
3972
  * External recipients of the automation action results.
4077
3973
  */
4078
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
3974
+ externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
4079
3975
  }
4080
3976
  export declare const JsonApiAutomationPatchAttributesStateEnum: {
4081
3977
  readonly ACTIVE: "ACTIVE";
@@ -4087,14 +3983,95 @@ export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
4087
3983
  readonly PER_RECIPIENT: "PER_RECIPIENT";
4088
3984
  };
4089
3985
  export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
3986
+ export interface JsonApiAutomationPatchAttributesAlert {
3987
+ execution: AlertAfm;
3988
+ condition: AlertCondition;
3989
+ /**
3990
+ * 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.
3991
+ */
3992
+ trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
3993
+ }
3994
+ export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
3995
+ readonly ALWAYS: "ALWAYS";
3996
+ readonly ONCE: "ONCE";
3997
+ };
3998
+ export type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
3999
+ export interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
4000
+ requestPayload: DashboardTabularExportRequestV2;
4001
+ }
4002
+ export interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
4003
+ /**
4004
+ * E-mail address to send notifications from.
4005
+ */
4006
+ email: string;
4007
+ }
4008
+ export interface JsonApiAutomationPatchAttributesImageExportsInner {
4009
+ requestPayload: ImageExportRequest;
4010
+ }
4011
+ /**
4012
+ * Additional information for the automation.
4013
+ */
4014
+ export interface JsonApiAutomationPatchAttributesMetadata {
4015
+ [key: string]: any;
4016
+ widget?: string;
4017
+ visibleFilters?: Array<VisibleFilter>;
4018
+ }
4019
+ export interface JsonApiAutomationPatchAttributesRawExportsInner {
4020
+ requestPayload: RawExportAutomationRequest;
4021
+ }
4022
+ export interface JsonApiAutomationPatchAttributesSchedule {
4023
+ /**
4024
+ * 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.
4025
+ */
4026
+ cron: string;
4027
+ /**
4028
+ * Human-readable description of the cron expression.
4029
+ */
4030
+ cronDescription?: string;
4031
+ /**
4032
+ * Timezone in which the schedule is defined.
4033
+ */
4034
+ timezone: string;
4035
+ /**
4036
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
4037
+ */
4038
+ firstRun?: string;
4039
+ }
4040
+ export interface JsonApiAutomationPatchAttributesSlidesExportsInner {
4041
+ requestPayload: SlidesExportRequest;
4042
+ }
4043
+ export interface JsonApiAutomationPatchAttributesTabularExportsInner {
4044
+ requestPayload: TabularExportRequest;
4045
+ }
4046
+ export interface JsonApiAutomationPatchAttributesVisualExportsInner {
4047
+ requestPayload: VisualExportRequest;
4048
+ }
4090
4049
  export interface JsonApiAutomationPatchDocument {
4091
4050
  data: JsonApiAutomationPatch;
4092
4051
  }
4093
4052
  export interface JsonApiAutomationPatchRelationships {
4094
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
4095
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
4096
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
4097
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
4053
+ notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
4054
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
4055
+ exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
4056
+ recipients?: JsonApiAutomationPatchRelationshipsRecipients;
4057
+ }
4058
+ export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
4059
+ data: JsonApiAnalyticalDashboardLinkage | null;
4060
+ }
4061
+ export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
4062
+ /**
4063
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4064
+ */
4065
+ data: Array<JsonApiExportDefinitionLinkage>;
4066
+ }
4067
+ export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
4068
+ data: JsonApiNotificationChannelLinkage | null;
4069
+ }
4070
+ export interface JsonApiAutomationPatchRelationshipsRecipients {
4071
+ /**
4072
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4073
+ */
4074
+ data: Array<JsonApiUserLinkage>;
4098
4075
  }
4099
4076
  /**
4100
4077
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
@@ -4219,7 +4196,10 @@ export interface JsonApiColorPaletteOutDocument {
4219
4196
  export interface JsonApiColorPaletteOutList {
4220
4197
  data: Array<JsonApiColorPaletteOutWithLinks>;
4221
4198
  links?: ListLinks;
4222
- meta?: JsonApiAggregatedFactOutListMeta;
4199
+ meta?: JsonApiColorPaletteOutListMeta;
4200
+ }
4201
+ export interface JsonApiColorPaletteOutListMeta {
4202
+ page?: PageMetadata;
4223
4203
  }
4224
4204
  export interface JsonApiColorPaletteOutWithLinks {
4225
4205
  /**
@@ -4277,7 +4257,7 @@ export interface JsonApiCookieSecurityConfigurationIn {
4277
4257
  * API identifier of an object
4278
4258
  */
4279
4259
  id: string;
4280
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4260
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4281
4261
  }
4282
4262
  export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
4283
4263
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
@@ -4298,19 +4278,12 @@ export interface JsonApiCookieSecurityConfigurationOut {
4298
4278
  * API identifier of an object
4299
4279
  */
4300
4280
  id: string;
4301
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4281
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4302
4282
  }
4303
4283
  export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
4304
4284
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4305
4285
  };
4306
4286
  export type JsonApiCookieSecurityConfigurationOutTypeEnum = (typeof JsonApiCookieSecurityConfigurationOutTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
4307
- export interface JsonApiCookieSecurityConfigurationOutAttributes {
4308
- lastRotation?: string;
4309
- /**
4310
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4311
- */
4312
- rotationInterval?: string;
4313
- }
4314
4287
  export interface JsonApiCookieSecurityConfigurationOutDocument {
4315
4288
  data: JsonApiCookieSecurityConfigurationOut;
4316
4289
  links?: ObjectLinks;
@@ -4327,12 +4300,19 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4327
4300
  * API identifier of an object
4328
4301
  */
4329
4302
  id: string;
4330
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4303
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
4331
4304
  }
4332
4305
  export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
4333
4306
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4334
4307
  };
4335
4308
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
4309
+ export interface JsonApiCookieSecurityConfigurationPatchAttributes {
4310
+ lastRotation?: string;
4311
+ /**
4312
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4313
+ */
4314
+ rotationInterval?: string;
4315
+ }
4336
4316
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
4337
4317
  data: JsonApiCookieSecurityConfigurationPatch;
4338
4318
  }
@@ -4388,7 +4368,7 @@ export interface JsonApiCspDirectiveOutDocument {
4388
4368
  export interface JsonApiCspDirectiveOutList {
4389
4369
  data: Array<JsonApiCspDirectiveOutWithLinks>;
4390
4370
  links?: ListLinks;
4391
- meta?: JsonApiAggregatedFactOutListMeta;
4371
+ meta?: JsonApiColorPaletteOutListMeta;
4392
4372
  }
4393
4373
  export interface JsonApiCspDirectiveOutWithLinks {
4394
4374
  /**
@@ -4463,7 +4443,7 @@ export interface JsonApiCustomApplicationSettingOut {
4463
4443
  * API identifier of an object
4464
4444
  */
4465
4445
  id: string;
4466
- meta?: JsonApiDatasetOutMeta;
4446
+ meta?: JsonApiVisualizationObjectOutMeta;
4467
4447
  attributes: JsonApiCustomApplicationSettingOutAttributes;
4468
4448
  }
4469
4449
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -4487,7 +4467,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
4487
4467
  export interface JsonApiCustomApplicationSettingOutList {
4488
4468
  data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
4489
4469
  links?: ListLinks;
4490
- meta?: JsonApiAggregatedFactOutListMeta;
4470
+ meta?: JsonApiColorPaletteOutListMeta;
4491
4471
  }
4492
4472
  export interface JsonApiCustomApplicationSettingOutWithLinks {
4493
4473
  /**
@@ -4498,7 +4478,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
4498
4478
  * API identifier of an object
4499
4479
  */
4500
4480
  id: string;
4501
- meta?: JsonApiDatasetOutMeta;
4481
+ meta?: JsonApiVisualizationObjectOutMeta;
4502
4482
  attributes: JsonApiCustomApplicationSettingOutAttributes;
4503
4483
  links?: ObjectLinks;
4504
4484
  }
@@ -4599,7 +4579,7 @@ export interface JsonApiDashboardPluginOut {
4599
4579
  * API identifier of an object
4600
4580
  */
4601
4581
  id: string;
4602
- meta?: JsonApiDatasetOutMeta;
4582
+ meta?: JsonApiVisualizationObjectOutMeta;
4603
4583
  attributes?: JsonApiDashboardPluginOutAttributes;
4604
4584
  relationships?: JsonApiDashboardPluginOutRelationships;
4605
4585
  }
@@ -4633,7 +4613,7 @@ export interface JsonApiDashboardPluginOutDocument {
4633
4613
  export interface JsonApiDashboardPluginOutList {
4634
4614
  data: Array<JsonApiDashboardPluginOutWithLinks>;
4635
4615
  links?: ListLinks;
4636
- meta?: JsonApiAggregatedFactOutListMeta;
4616
+ meta?: JsonApiColorPaletteOutListMeta;
4637
4617
  /**
4638
4618
  * Included resources
4639
4619
  */
@@ -4652,7 +4632,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
4652
4632
  * API identifier of an object
4653
4633
  */
4654
4634
  id: string;
4655
- meta?: JsonApiDatasetOutMeta;
4635
+ meta?: JsonApiVisualizationObjectOutMeta;
4656
4636
  attributes?: JsonApiDashboardPluginOutAttributes;
4657
4637
  relationships?: JsonApiDashboardPluginOutRelationships;
4658
4638
  links?: ObjectLinks;
@@ -4725,7 +4705,7 @@ export interface JsonApiDataSourceIdentifierOut {
4725
4705
  * API identifier of an object
4726
4706
  */
4727
4707
  id: string;
4728
- meta?: JsonApiDataSourceOutMeta;
4708
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4729
4709
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4730
4710
  }
4731
4711
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
@@ -4776,8 +4756,19 @@ export interface JsonApiDataSourceIdentifierOutDocument {
4776
4756
  export interface JsonApiDataSourceIdentifierOutList {
4777
4757
  data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
4778
4758
  links?: ListLinks;
4779
- meta?: JsonApiAggregatedFactOutListMeta;
4759
+ meta?: JsonApiColorPaletteOutListMeta;
4760
+ }
4761
+ export interface JsonApiDataSourceIdentifierOutMeta {
4762
+ /**
4763
+ * List of valid permissions for a logged-in user.
4764
+ */
4765
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
4780
4766
  }
4767
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
4768
+ readonly MANAGE: "MANAGE";
4769
+ readonly USE: "USE";
4770
+ };
4771
+ export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
4781
4772
  export interface JsonApiDataSourceIdentifierOutWithLinks {
4782
4773
  /**
4783
4774
  * Object type
@@ -4787,7 +4778,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
4787
4778
  * API identifier of an object
4788
4779
  */
4789
4780
  id: string;
4790
- meta?: JsonApiDataSourceOutMeta;
4781
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4791
4782
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4792
4783
  links?: ObjectLinks;
4793
4784
  }
@@ -4861,7 +4852,7 @@ export interface JsonApiDataSourceInAttributes {
4861
4852
  /**
4862
4853
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4863
4854
  */
4864
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4855
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4865
4856
  /**
4866
4857
  * Determines how the results coming from a particular datasource should be cached.
4867
4858
  */
@@ -4916,7 +4907,7 @@ export interface JsonApiDataSourceOut {
4916
4907
  * API identifier of an object
4917
4908
  */
4918
4909
  id: string;
4919
- meta?: JsonApiDataSourceOutMeta;
4910
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4920
4911
  attributes: JsonApiDataSourceOutAttributes;
4921
4912
  }
4922
4913
  export declare const JsonApiDataSourceOutTypeEnum: {
@@ -4951,11 +4942,11 @@ export interface JsonApiDataSourceOutAttributes {
4951
4942
  /**
4952
4943
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4953
4944
  */
4954
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4945
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4955
4946
  /**
4956
4947
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
4957
4948
  */
4958
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4949
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4959
4950
  /**
4960
4951
  * Determines how the results coming from a particular datasource should be cached.
4961
4952
  */
@@ -5007,6 +4998,10 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
5007
4998
  readonly ACCESS_TOKEN: "ACCESS_TOKEN";
5008
4999
  };
5009
5000
  export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
5001
+ export interface JsonApiDataSourceOutAttributesParametersInner {
5002
+ name: string;
5003
+ value: string;
5004
+ }
5010
5005
  export interface JsonApiDataSourceOutDocument {
5011
5006
  data: JsonApiDataSourceOut;
5012
5007
  links?: ObjectLinks;
@@ -5017,19 +5012,8 @@ export interface JsonApiDataSourceOutDocument {
5017
5012
  export interface JsonApiDataSourceOutList {
5018
5013
  data: Array<JsonApiDataSourceOutWithLinks>;
5019
5014
  links?: ListLinks;
5020
- meta?: JsonApiAggregatedFactOutListMeta;
5021
- }
5022
- export interface JsonApiDataSourceOutMeta {
5023
- /**
5024
- * List of valid permissions for a logged-in user.
5025
- */
5026
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
5015
+ meta?: JsonApiColorPaletteOutListMeta;
5027
5016
  }
5028
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
5029
- readonly MANAGE: "MANAGE";
5030
- readonly USE: "USE";
5031
- };
5032
- export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
5033
5017
  export interface JsonApiDataSourceOutWithLinks {
5034
5018
  /**
5035
5019
  * Object type
@@ -5039,7 +5023,7 @@ export interface JsonApiDataSourceOutWithLinks {
5039
5023
  * API identifier of an object
5040
5024
  */
5041
5025
  id: string;
5042
- meta?: JsonApiDataSourceOutMeta;
5026
+ meta?: JsonApiDataSourceIdentifierOutMeta;
5043
5027
  attributes: JsonApiDataSourceOutAttributes;
5044
5028
  links?: ObjectLinks;
5045
5029
  }
@@ -5113,7 +5097,7 @@ export interface JsonApiDataSourcePatchAttributes {
5113
5097
  /**
5114
5098
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5115
5099
  */
5116
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
5100
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5117
5101
  /**
5118
5102
  * Determines how the results coming from a particular datasource should be cached.
5119
5103
  */
@@ -5153,10 +5137,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
5153
5137
  readonly NEVER: "NEVER";
5154
5138
  };
5155
5139
  export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
5156
- export interface JsonApiDataSourcePatchAttributesParametersInner {
5157
- name: string;
5158
- value: string;
5159
- }
5160
5140
  export interface JsonApiDataSourcePatchDocument {
5161
5141
  data: JsonApiDataSourcePatch;
5162
5142
  }
@@ -5183,7 +5163,7 @@ export interface JsonApiDatasetOut {
5183
5163
  * API identifier of an object
5184
5164
  */
5185
5165
  id: string;
5186
- meta?: JsonApiDatasetOutMeta;
5166
+ meta?: JsonApiVisualizationObjectOutMeta;
5187
5167
  attributes: JsonApiDatasetOutAttributes;
5188
5168
  relationships?: JsonApiDatasetOutRelationships;
5189
5169
  }
@@ -5294,35 +5274,17 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
5294
5274
  export interface JsonApiDatasetOutList {
5295
5275
  data: Array<JsonApiDatasetOutWithLinks>;
5296
5276
  links?: ListLinks;
5297
- meta?: JsonApiAggregatedFactOutListMeta;
5277
+ meta?: JsonApiColorPaletteOutListMeta;
5298
5278
  /**
5299
5279
  * Included resources
5300
5280
  */
5301
5281
  included?: Array<JsonApiDatasetOutIncludes>;
5302
5282
  }
5303
- export interface JsonApiDatasetOutMeta {
5304
- origin?: JsonApiDatasetOutMetaOrigin;
5305
- }
5306
- export interface JsonApiDatasetOutMetaOrigin {
5307
- /**
5308
- * defines type of the origin of the entity
5309
- */
5310
- originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
5311
- /**
5312
- * defines id of the workspace where the entity comes from
5313
- */
5314
- originId: string;
5315
- }
5316
- export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
5317
- readonly NATIVE: "NATIVE";
5318
- readonly PARENT: "PARENT";
5319
- };
5320
- export type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
5321
5283
  export interface JsonApiDatasetOutRelationships {
5322
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
5323
- facts?: JsonApiDatasetOutRelationshipsFacts;
5284
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
5285
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
5324
5286
  aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
5325
- references?: JsonApiDatasetOutRelationshipsReferences;
5287
+ references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
5326
5288
  workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
5327
5289
  }
5328
5290
  export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
@@ -5331,24 +5293,6 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
5331
5293
  */
5332
5294
  data: Array<JsonApiAggregatedFactLinkage>;
5333
5295
  }
5334
- export interface JsonApiDatasetOutRelationshipsAttributes {
5335
- /**
5336
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
5337
- */
5338
- data: Array<JsonApiAttributeLinkage>;
5339
- }
5340
- export interface JsonApiDatasetOutRelationshipsFacts {
5341
- /**
5342
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
5343
- */
5344
- data: Array<JsonApiFactLinkage>;
5345
- }
5346
- export interface JsonApiDatasetOutRelationshipsReferences {
5347
- /**
5348
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
5349
- */
5350
- data: Array<JsonApiDatasetLinkage>;
5351
- }
5352
5296
  export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
5353
5297
  /**
5354
5298
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -5364,7 +5308,7 @@ export interface JsonApiDatasetOutWithLinks {
5364
5308
  * API identifier of an object
5365
5309
  */
5366
5310
  id: string;
5367
- meta?: JsonApiDatasetOutMeta;
5311
+ meta?: JsonApiVisualizationObjectOutMeta;
5368
5312
  attributes: JsonApiDatasetOutAttributes;
5369
5313
  relationships?: JsonApiDatasetOutRelationships;
5370
5314
  links?: ObjectLinks;
@@ -5405,7 +5349,7 @@ export interface JsonApiEntitlementOutDocument {
5405
5349
  export interface JsonApiEntitlementOutList {
5406
5350
  data: Array<JsonApiEntitlementOutWithLinks>;
5407
5351
  links?: ListLinks;
5408
- meta?: JsonApiAggregatedFactOutListMeta;
5352
+ meta?: JsonApiColorPaletteOutListMeta;
5409
5353
  }
5410
5354
  export interface JsonApiEntitlementOutWithLinks {
5411
5355
  /**
@@ -5468,7 +5412,7 @@ export interface JsonApiExportDefinitionOut {
5468
5412
  * API identifier of an object
5469
5413
  */
5470
5414
  id: string;
5471
- meta?: JsonApiDatasetOutMeta;
5415
+ meta?: JsonApiVisualizationObjectOutMeta;
5472
5416
  attributes?: JsonApiExportDefinitionOutAttributes;
5473
5417
  relationships?: JsonApiExportDefinitionOutRelationships;
5474
5418
  }
@@ -5508,7 +5452,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
5508
5452
  export interface JsonApiExportDefinitionOutList {
5509
5453
  data: Array<JsonApiExportDefinitionOutWithLinks>;
5510
5454
  links?: ListLinks;
5511
- meta?: JsonApiAggregatedFactOutListMeta;
5455
+ meta?: JsonApiColorPaletteOutListMeta;
5512
5456
  /**
5513
5457
  * Included resources
5514
5458
  */
@@ -5516,14 +5460,11 @@ export interface JsonApiExportDefinitionOutList {
5516
5460
  }
5517
5461
  export interface JsonApiExportDefinitionOutRelationships {
5518
5462
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5519
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5463
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
5520
5464
  automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
5521
5465
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
5522
5466
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
5523
5467
  }
5524
- export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
5525
- data: JsonApiAnalyticalDashboardLinkage | null;
5526
- }
5527
5468
  export interface JsonApiExportDefinitionOutRelationshipsAutomation {
5528
5469
  data: JsonApiAutomationLinkage | null;
5529
5470
  }
@@ -5539,7 +5480,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
5539
5480
  * API identifier of an object
5540
5481
  */
5541
5482
  id: string;
5542
- meta?: JsonApiDatasetOutMeta;
5483
+ meta?: JsonApiVisualizationObjectOutMeta;
5543
5484
  attributes?: JsonApiExportDefinitionOutAttributes;
5544
5485
  relationships?: JsonApiExportDefinitionOutRelationships;
5545
5486
  links?: ObjectLinks;
@@ -5579,7 +5520,7 @@ export interface JsonApiExportDefinitionPatchDocument {
5579
5520
  }
5580
5521
  export interface JsonApiExportDefinitionPatchRelationships {
5581
5522
  visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5582
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5523
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
5583
5524
  }
5584
5525
  /**
5585
5526
  * JSON:API representation of exportDefinition entity.
@@ -5647,9 +5588,42 @@ export interface JsonApiExportTemplateOutAttributes {
5647
5588
  * User-facing name of the Slides template.
5648
5589
  */
5649
5590
  name: string;
5650
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5651
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5591
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5592
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5593
+ }
5594
+ /**
5595
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5596
+ */
5597
+ export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
5598
+ /**
5599
+ * Export types this template applies to.
5600
+ */
5601
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
5602
+ coverSlide?: CoverSlideTemplate | null;
5603
+ introSlide?: IntroSlideTemplate | null;
5604
+ sectionSlide?: SectionSlideTemplate | null;
5605
+ contentSlide?: ContentSlideTemplate | null;
5606
+ }
5607
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
5608
+ readonly PDF: "PDF";
5609
+ readonly PPTX: "PPTX";
5610
+ };
5611
+ export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
5612
+ /**
5613
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5614
+ */
5615
+ export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
5616
+ /**
5617
+ * Export types this template applies to.
5618
+ */
5619
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
5620
+ contentSlide?: ContentSlideTemplate | null;
5652
5621
  }
5622
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
5623
+ readonly PDF: "PDF";
5624
+ readonly PPTX: "PPTX";
5625
+ };
5626
+ export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
5653
5627
  export interface JsonApiExportTemplateOutDocument {
5654
5628
  data: JsonApiExportTemplateOut;
5655
5629
  links?: ObjectLinks;
@@ -5660,7 +5634,7 @@ export interface JsonApiExportTemplateOutDocument {
5660
5634
  export interface JsonApiExportTemplateOutList {
5661
5635
  data: Array<JsonApiExportTemplateOutWithLinks>;
5662
5636
  links?: ListLinks;
5663
- meta?: JsonApiAggregatedFactOutListMeta;
5637
+ meta?: JsonApiColorPaletteOutListMeta;
5664
5638
  }
5665
5639
  export interface JsonApiExportTemplateOutWithLinks {
5666
5640
  /**
@@ -5701,51 +5675,18 @@ export interface JsonApiExportTemplatePatchAttributes {
5701
5675
  * User-facing name of the Slides template.
5702
5676
  */
5703
5677
  name?: string;
5704
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5705
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5678
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5679
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5680
+ }
5681
+ export interface JsonApiExportTemplatePatchDocument {
5682
+ data: JsonApiExportTemplatePatch;
5706
5683
  }
5707
5684
  /**
5708
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5685
+ * JSON:API representation of exportTemplate entity.
5709
5686
  */
5710
- export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
5687
+ export interface JsonApiExportTemplatePostOptionalId {
5711
5688
  /**
5712
- * Export types this template applies to.
5713
- */
5714
- appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
5715
- coverSlide?: CoverSlideTemplate | null;
5716
- introSlide?: IntroSlideTemplate | null;
5717
- sectionSlide?: SectionSlideTemplate | null;
5718
- contentSlide?: ContentSlideTemplate | null;
5719
- }
5720
- export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
5721
- readonly PDF: "PDF";
5722
- readonly PPTX: "PPTX";
5723
- };
5724
- export type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
5725
- /**
5726
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5727
- */
5728
- export interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
5729
- /**
5730
- * Export types this template applies to.
5731
- */
5732
- appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
5733
- contentSlide?: ContentSlideTemplate | null;
5734
- }
5735
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
5736
- readonly PDF: "PDF";
5737
- readonly PPTX: "PPTX";
5738
- };
5739
- export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
5740
- export interface JsonApiExportTemplatePatchDocument {
5741
- data: JsonApiExportTemplatePatch;
5742
- }
5743
- /**
5744
- * JSON:API representation of exportTemplate entity.
5745
- */
5746
- export interface JsonApiExportTemplatePostOptionalId {
5747
- /**
5748
- * Object type
5689
+ * Object type
5749
5690
  */
5750
5691
  type: JsonApiExportTemplatePostOptionalIdTypeEnum;
5751
5692
  /**
@@ -5784,7 +5725,7 @@ export interface JsonApiFactOut {
5784
5725
  * API identifier of an object
5785
5726
  */
5786
5727
  id: string;
5787
- meta?: JsonApiDatasetOutMeta;
5728
+ meta?: JsonApiVisualizationObjectOutMeta;
5788
5729
  attributes?: JsonApiFactOutAttributes;
5789
5730
  relationships?: JsonApiFactOutRelationships;
5790
5731
  }
@@ -5825,17 +5766,14 @@ export interface JsonApiFactOutDocument {
5825
5766
  export interface JsonApiFactOutList {
5826
5767
  data: Array<JsonApiFactOutWithLinks>;
5827
5768
  links?: ListLinks;
5828
- meta?: JsonApiAggregatedFactOutListMeta;
5769
+ meta?: JsonApiColorPaletteOutListMeta;
5829
5770
  /**
5830
5771
  * Included resources
5831
5772
  */
5832
5773
  included?: Array<JsonApiDatasetOutWithLinks>;
5833
5774
  }
5834
5775
  export interface JsonApiFactOutRelationships {
5835
- dataset?: JsonApiFactOutRelationshipsDataset;
5836
- }
5837
- export interface JsonApiFactOutRelationshipsDataset {
5838
- data: JsonApiDatasetLinkage | null;
5776
+ dataset?: JsonApiAttributeOutRelationshipsDataset;
5839
5777
  }
5840
5778
  export interface JsonApiFactOutWithLinks {
5841
5779
  /**
@@ -5846,7 +5784,7 @@ export interface JsonApiFactOutWithLinks {
5846
5784
  * API identifier of an object
5847
5785
  */
5848
5786
  id: string;
5849
- meta?: JsonApiDatasetOutMeta;
5787
+ meta?: JsonApiVisualizationObjectOutMeta;
5850
5788
  attributes?: JsonApiFactOutAttributes;
5851
5789
  relationships?: JsonApiFactOutRelationships;
5852
5790
  links?: ObjectLinks;
@@ -5899,7 +5837,7 @@ export interface JsonApiFilterContextOut {
5899
5837
  * API identifier of an object
5900
5838
  */
5901
5839
  id: string;
5902
- meta?: JsonApiDatasetOutMeta;
5840
+ meta?: JsonApiVisualizationObjectOutMeta;
5903
5841
  attributes: JsonApiFilterContextOutAttributes;
5904
5842
  relationships?: JsonApiFilterContextOutRelationships;
5905
5843
  }
@@ -5935,15 +5873,15 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
5935
5873
  export interface JsonApiFilterContextOutList {
5936
5874
  data: Array<JsonApiFilterContextOutWithLinks>;
5937
5875
  links?: ListLinks;
5938
- meta?: JsonApiAggregatedFactOutListMeta;
5876
+ meta?: JsonApiColorPaletteOutListMeta;
5939
5877
  /**
5940
5878
  * Included resources
5941
5879
  */
5942
5880
  included?: Array<JsonApiFilterContextOutIncludes>;
5943
5881
  }
5944
5882
  export interface JsonApiFilterContextOutRelationships {
5945
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
5946
- datasets?: JsonApiDatasetOutRelationshipsReferences;
5883
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
5884
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
5947
5885
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
5948
5886
  }
5949
5887
  export interface JsonApiFilterContextOutWithLinks {
@@ -5955,7 +5893,7 @@ export interface JsonApiFilterContextOutWithLinks {
5955
5893
  * API identifier of an object
5956
5894
  */
5957
5895
  id: string;
5958
- meta?: JsonApiDatasetOutMeta;
5896
+ meta?: JsonApiVisualizationObjectOutMeta;
5959
5897
  attributes: JsonApiFilterContextOutAttributes;
5960
5898
  relationships?: JsonApiFilterContextOutRelationships;
5961
5899
  links?: ObjectLinks;
@@ -6019,7 +5957,7 @@ export interface JsonApiFilterViewIn {
6019
5957
  */
6020
5958
  id: string;
6021
5959
  attributes: JsonApiFilterViewOutAttributes;
6022
- relationships?: JsonApiFilterViewOutRelationships;
5960
+ relationships?: JsonApiFilterViewPatchRelationships;
6023
5961
  }
6024
5962
  export declare const JsonApiFilterViewInTypeEnum: {
6025
5963
  readonly FILTER_VIEW: "filterView";
@@ -6041,7 +5979,7 @@ export interface JsonApiFilterViewOut {
6041
5979
  */
6042
5980
  id: string;
6043
5981
  attributes: JsonApiFilterViewOutAttributes;
6044
- relationships?: JsonApiFilterViewOutRelationships;
5982
+ relationships?: JsonApiFilterViewPatchRelationships;
6045
5983
  }
6046
5984
  export declare const JsonApiFilterViewOutTypeEnum: {
6047
5985
  readonly FILTER_VIEW: "filterView";
@@ -6079,16 +6017,12 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
6079
6017
  export interface JsonApiFilterViewOutList {
6080
6018
  data: Array<JsonApiFilterViewOutWithLinks>;
6081
6019
  links?: ListLinks;
6082
- meta?: JsonApiAggregatedFactOutListMeta;
6020
+ meta?: JsonApiColorPaletteOutListMeta;
6083
6021
  /**
6084
6022
  * Included resources
6085
6023
  */
6086
6024
  included?: Array<JsonApiFilterViewOutIncludes>;
6087
6025
  }
6088
- export interface JsonApiFilterViewOutRelationships {
6089
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6090
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6091
- }
6092
6026
  export interface JsonApiFilterViewOutWithLinks {
6093
6027
  /**
6094
6028
  * Object type
@@ -6099,7 +6033,7 @@ export interface JsonApiFilterViewOutWithLinks {
6099
6033
  */
6100
6034
  id: string;
6101
6035
  attributes: JsonApiFilterViewOutAttributes;
6102
- relationships?: JsonApiFilterViewOutRelationships;
6036
+ relationships?: JsonApiFilterViewPatchRelationships;
6103
6037
  links?: ObjectLinks;
6104
6038
  }
6105
6039
  export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
@@ -6119,7 +6053,7 @@ export interface JsonApiFilterViewPatch {
6119
6053
  */
6120
6054
  id: string;
6121
6055
  attributes: JsonApiFilterViewPatchAttributes;
6122
- relationships?: JsonApiFilterViewOutRelationships;
6056
+ relationships?: JsonApiFilterViewPatchRelationships;
6123
6057
  }
6124
6058
  export declare const JsonApiFilterViewPatchTypeEnum: {
6125
6059
  readonly FILTER_VIEW: "filterView";
@@ -6142,6 +6076,10 @@ export interface JsonApiFilterViewPatchAttributes {
6142
6076
  export interface JsonApiFilterViewPatchDocument {
6143
6077
  data: JsonApiFilterViewPatch;
6144
6078
  }
6079
+ export interface JsonApiFilterViewPatchRelationships {
6080
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
6081
+ user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6082
+ }
6145
6083
  /**
6146
6084
  * JSON:API representation of identityProvider entity.
6147
6085
  */
@@ -6154,12 +6092,69 @@ export interface JsonApiIdentityProviderIn {
6154
6092
  * API identifier of an object
6155
6093
  */
6156
6094
  id: string;
6157
- attributes?: JsonApiIdentityProviderPatchAttributes;
6095
+ attributes?: JsonApiIdentityProviderInAttributes;
6158
6096
  }
6159
6097
  export declare const JsonApiIdentityProviderInTypeEnum: {
6160
6098
  readonly IDENTITY_PROVIDER: "identityProvider";
6161
6099
  };
6162
6100
  export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
6101
+ export interface JsonApiIdentityProviderInAttributes {
6102
+ /**
6103
+ * 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.
6104
+ */
6105
+ identifiers?: Array<string>;
6106
+ /**
6107
+ * 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.
6108
+ */
6109
+ customClaimMapping?: {
6110
+ [key: string]: string;
6111
+ };
6112
+ /**
6113
+ * 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.
6114
+ */
6115
+ samlMetadata?: string;
6116
+ /**
6117
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6118
+ */
6119
+ oauthClientId?: string;
6120
+ /**
6121
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6122
+ */
6123
+ oauthClientSecret?: string;
6124
+ /**
6125
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6126
+ */
6127
+ oauthIssuerLocation?: string;
6128
+ /**
6129
+ * 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.
6130
+ */
6131
+ oauthIssuerId?: string;
6132
+ /**
6133
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
6134
+ */
6135
+ oauthSubjectIdClaim?: string;
6136
+ /**
6137
+ * 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.
6138
+ */
6139
+ oauthCustomAuthAttributes?: {
6140
+ [key: string]: string;
6141
+ };
6142
+ /**
6143
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
6144
+ */
6145
+ oauthCustomScopes?: Array<string> | null;
6146
+ /**
6147
+ * 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.
6148
+ */
6149
+ idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
6150
+ }
6151
+ export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
6152
+ readonly MANAGED_IDP: "MANAGED_IDP";
6153
+ readonly FIM_IDP: "FIM_IDP";
6154
+ readonly DEX_IDP: "DEX_IDP";
6155
+ readonly CUSTOM_IDP: "CUSTOM_IDP";
6156
+ };
6157
+ export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
6163
6158
  export interface JsonApiIdentityProviderInDocument {
6164
6159
  data: JsonApiIdentityProviderIn;
6165
6160
  }
@@ -6251,7 +6246,7 @@ export interface JsonApiIdentityProviderOutDocument {
6251
6246
  export interface JsonApiIdentityProviderOutList {
6252
6247
  data: Array<JsonApiIdentityProviderOutWithLinks>;
6253
6248
  links?: ListLinks;
6254
- meta?: JsonApiAggregatedFactOutListMeta;
6249
+ meta?: JsonApiColorPaletteOutListMeta;
6255
6250
  }
6256
6251
  export interface JsonApiIdentityProviderOutWithLinks {
6257
6252
  /**
@@ -6281,69 +6276,12 @@ export interface JsonApiIdentityProviderPatch {
6281
6276
  * API identifier of an object
6282
6277
  */
6283
6278
  id: string;
6284
- attributes?: JsonApiIdentityProviderPatchAttributes;
6279
+ attributes?: JsonApiIdentityProviderInAttributes;
6285
6280
  }
6286
6281
  export declare const JsonApiIdentityProviderPatchTypeEnum: {
6287
6282
  readonly IDENTITY_PROVIDER: "identityProvider";
6288
6283
  };
6289
6284
  export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
6290
- export interface JsonApiIdentityProviderPatchAttributes {
6291
- /**
6292
- * 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.
6293
- */
6294
- identifiers?: Array<string>;
6295
- /**
6296
- * 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.
6297
- */
6298
- customClaimMapping?: {
6299
- [key: string]: string;
6300
- };
6301
- /**
6302
- * 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.
6303
- */
6304
- samlMetadata?: string;
6305
- /**
6306
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6307
- */
6308
- oauthClientId?: string;
6309
- /**
6310
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6311
- */
6312
- oauthClientSecret?: string;
6313
- /**
6314
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6315
- */
6316
- oauthIssuerLocation?: string;
6317
- /**
6318
- * 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.
6319
- */
6320
- oauthIssuerId?: string;
6321
- /**
6322
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
6323
- */
6324
- oauthSubjectIdClaim?: string;
6325
- /**
6326
- * 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.
6327
- */
6328
- oauthCustomAuthAttributes?: {
6329
- [key: string]: string;
6330
- };
6331
- /**
6332
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
6333
- */
6334
- oauthCustomScopes?: Array<string> | null;
6335
- /**
6336
- * 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.
6337
- */
6338
- idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
6339
- }
6340
- export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
6341
- readonly MANAGED_IDP: "MANAGED_IDP";
6342
- readonly FIM_IDP: "FIM_IDP";
6343
- readonly DEX_IDP: "DEX_IDP";
6344
- readonly CUSTOM_IDP: "CUSTOM_IDP";
6345
- };
6346
- export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
6347
6285
  export interface JsonApiIdentityProviderPatchDocument {
6348
6286
  data: JsonApiIdentityProviderPatch;
6349
6287
  }
@@ -6359,7 +6297,7 @@ export interface JsonApiJwkIn {
6359
6297
  * API identifier of an object
6360
6298
  */
6361
6299
  id: string;
6362
- attributes?: JsonApiJwkPatchAttributes;
6300
+ attributes?: JsonApiJwkOutAttributes;
6363
6301
  }
6364
6302
  export declare const JsonApiJwkInTypeEnum: {
6365
6303
  readonly JWK: "jwk";
@@ -6380,12 +6318,15 @@ export interface JsonApiJwkOut {
6380
6318
  * API identifier of an object
6381
6319
  */
6382
6320
  id: string;
6383
- attributes?: JsonApiJwkPatchAttributes;
6321
+ attributes?: JsonApiJwkOutAttributes;
6384
6322
  }
6385
6323
  export declare const JsonApiJwkOutTypeEnum: {
6386
6324
  readonly JWK: "jwk";
6387
6325
  };
6388
6326
  export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
6327
+ export interface JsonApiJwkOutAttributes {
6328
+ content?: RsaSpecification;
6329
+ }
6389
6330
  export interface JsonApiJwkOutDocument {
6390
6331
  data: JsonApiJwkOut;
6391
6332
  links?: ObjectLinks;
@@ -6396,7 +6337,7 @@ export interface JsonApiJwkOutDocument {
6396
6337
  export interface JsonApiJwkOutList {
6397
6338
  data: Array<JsonApiJwkOutWithLinks>;
6398
6339
  links?: ListLinks;
6399
- meta?: JsonApiAggregatedFactOutListMeta;
6340
+ meta?: JsonApiColorPaletteOutListMeta;
6400
6341
  }
6401
6342
  export interface JsonApiJwkOutWithLinks {
6402
6343
  /**
@@ -6407,7 +6348,7 @@ export interface JsonApiJwkOutWithLinks {
6407
6348
  * API identifier of an object
6408
6349
  */
6409
6350
  id: string;
6410
- attributes?: JsonApiJwkPatchAttributes;
6351
+ attributes?: JsonApiJwkOutAttributes;
6411
6352
  links?: ObjectLinks;
6412
6353
  }
6413
6354
  export declare const JsonApiJwkOutWithLinksTypeEnum: {
@@ -6426,15 +6367,12 @@ export interface JsonApiJwkPatch {
6426
6367
  * API identifier of an object
6427
6368
  */
6428
6369
  id: string;
6429
- attributes?: JsonApiJwkPatchAttributes;
6370
+ attributes?: JsonApiJwkOutAttributes;
6430
6371
  }
6431
6372
  export declare const JsonApiJwkPatchTypeEnum: {
6432
6373
  readonly JWK: "jwk";
6433
6374
  };
6434
6375
  export type JsonApiJwkPatchTypeEnum = (typeof JsonApiJwkPatchTypeEnum)[keyof typeof JsonApiJwkPatchTypeEnum];
6435
- export interface JsonApiJwkPatchAttributes {
6436
- content?: RsaSpecification;
6437
- }
6438
6376
  export interface JsonApiJwkPatchDocument {
6439
6377
  data: JsonApiJwkPatch;
6440
6378
  }
@@ -6461,7 +6399,7 @@ export interface JsonApiLabelOut {
6461
6399
  * API identifier of an object
6462
6400
  */
6463
6401
  id: string;
6464
- meta?: JsonApiDatasetOutMeta;
6402
+ meta?: JsonApiVisualizationObjectOutMeta;
6465
6403
  attributes?: JsonApiLabelOutAttributes;
6466
6404
  relationships?: JsonApiLabelOutRelationships;
6467
6405
  }
@@ -6513,7 +6451,7 @@ export interface JsonApiLabelOutDocument {
6513
6451
  export interface JsonApiLabelOutList {
6514
6452
  data: Array<JsonApiLabelOutWithLinks>;
6515
6453
  links?: ListLinks;
6516
- meta?: JsonApiAggregatedFactOutListMeta;
6454
+ meta?: JsonApiColorPaletteOutListMeta;
6517
6455
  /**
6518
6456
  * Included resources
6519
6457
  */
@@ -6534,7 +6472,7 @@ export interface JsonApiLabelOutWithLinks {
6534
6472
  * API identifier of an object
6535
6473
  */
6536
6474
  id: string;
6537
- meta?: JsonApiDatasetOutMeta;
6475
+ meta?: JsonApiVisualizationObjectOutMeta;
6538
6476
  attributes?: JsonApiLabelOutAttributes;
6539
6477
  relationships?: JsonApiLabelOutRelationships;
6540
6478
  links?: ObjectLinks;
@@ -6650,7 +6588,7 @@ export interface JsonApiLlmEndpointOutDocument {
6650
6588
  export interface JsonApiLlmEndpointOutList {
6651
6589
  data: Array<JsonApiLlmEndpointOutWithLinks>;
6652
6590
  links?: ListLinks;
6653
- meta?: JsonApiAggregatedFactOutListMeta;
6591
+ meta?: JsonApiColorPaletteOutListMeta;
6654
6592
  }
6655
6593
  export interface JsonApiLlmEndpointOutWithLinks {
6656
6594
  /**
@@ -6732,12 +6670,20 @@ export interface JsonApiMetricIn {
6732
6670
  * API identifier of an object
6733
6671
  */
6734
6672
  id: string;
6735
- attributes: JsonApiMetricPostOptionalIdAttributes;
6673
+ attributes: JsonApiMetricInAttributes;
6736
6674
  }
6737
6675
  export declare const JsonApiMetricInTypeEnum: {
6738
6676
  readonly METRIC: "metric";
6739
6677
  };
6740
6678
  export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
6679
+ export interface JsonApiMetricInAttributes {
6680
+ title?: string;
6681
+ description?: string;
6682
+ tags?: Array<string>;
6683
+ areRelationsValid?: boolean;
6684
+ content: JsonApiMetricOutAttributesContent;
6685
+ isHidden?: boolean;
6686
+ }
6741
6687
  export interface JsonApiMetricInDocument {
6742
6688
  data: JsonApiMetricIn;
6743
6689
  }
@@ -6764,7 +6710,7 @@ export interface JsonApiMetricOut {
6764
6710
  * API identifier of an object
6765
6711
  */
6766
6712
  id: string;
6767
- meta?: JsonApiDatasetOutMeta;
6713
+ meta?: JsonApiVisualizationObjectOutMeta;
6768
6714
  attributes: JsonApiMetricOutAttributes;
6769
6715
  relationships?: JsonApiVisualizationObjectOutRelationships;
6770
6716
  }
@@ -6804,7 +6750,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
6804
6750
  export interface JsonApiMetricOutList {
6805
6751
  data: Array<JsonApiMetricOutWithLinks>;
6806
6752
  links?: ListLinks;
6807
- meta?: JsonApiAggregatedFactOutListMeta;
6753
+ meta?: JsonApiColorPaletteOutListMeta;
6808
6754
  /**
6809
6755
  * Included resources
6810
6756
  */
@@ -6819,7 +6765,7 @@ export interface JsonApiMetricOutWithLinks {
6819
6765
  * API identifier of an object
6820
6766
  */
6821
6767
  id: string;
6822
- meta?: JsonApiDatasetOutMeta;
6768
+ meta?: JsonApiVisualizationObjectOutMeta;
6823
6769
  attributes: JsonApiMetricOutAttributes;
6824
6770
  relationships?: JsonApiVisualizationObjectOutRelationships;
6825
6771
  links?: ObjectLinks;
@@ -6869,20 +6815,12 @@ export interface JsonApiMetricPostOptionalId {
6869
6815
  * API identifier of an object
6870
6816
  */
6871
6817
  id?: string;
6872
- attributes: JsonApiMetricPostOptionalIdAttributes;
6818
+ attributes: JsonApiMetricInAttributes;
6873
6819
  }
6874
6820
  export declare const JsonApiMetricPostOptionalIdTypeEnum: {
6875
6821
  readonly METRIC: "metric";
6876
6822
  };
6877
6823
  export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
6878
- export interface JsonApiMetricPostOptionalIdAttributes {
6879
- title?: string;
6880
- description?: string;
6881
- tags?: Array<string>;
6882
- areRelationsValid?: boolean;
6883
- content: JsonApiMetricOutAttributesContent;
6884
- isHidden?: boolean;
6885
- }
6886
6824
  export interface JsonApiMetricPostOptionalIdDocument {
6887
6825
  data: JsonApiMetricPostOptionalId;
6888
6826
  }
@@ -6936,7 +6874,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
6936
6874
  export interface JsonApiNotificationChannelIdentifierOutList {
6937
6875
  data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
6938
6876
  links?: ListLinks;
6939
- meta?: JsonApiAggregatedFactOutListMeta;
6877
+ meta?: JsonApiColorPaletteOutListMeta;
6940
6878
  }
6941
6879
  export interface JsonApiNotificationChannelIdentifierOutWithLinks {
6942
6880
  /**
@@ -6966,7 +6904,7 @@ export interface JsonApiNotificationChannelIn {
6966
6904
  * API identifier of an object
6967
6905
  */
6968
6906
  id: string;
6969
- attributes?: JsonApiNotificationChannelPatchAttributes;
6907
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
6970
6908
  }
6971
6909
  export declare const JsonApiNotificationChannelInTypeEnum: {
6972
6910
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
@@ -7069,7 +7007,7 @@ export interface JsonApiNotificationChannelOutDocument {
7069
7007
  export interface JsonApiNotificationChannelOutList {
7070
7008
  data: Array<JsonApiNotificationChannelOutWithLinks>;
7071
7009
  links?: ListLinks;
7072
- meta?: JsonApiAggregatedFactOutListMeta;
7010
+ meta?: JsonApiColorPaletteOutListMeta;
7073
7011
  }
7074
7012
  export interface JsonApiNotificationChannelOutWithLinks {
7075
7013
  /**
@@ -7099,13 +7037,34 @@ export interface JsonApiNotificationChannelPatch {
7099
7037
  * API identifier of an object
7100
7038
  */
7101
7039
  id: string;
7102
- attributes?: JsonApiNotificationChannelPatchAttributes;
7040
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
7103
7041
  }
7104
7042
  export declare const JsonApiNotificationChannelPatchTypeEnum: {
7105
7043
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
7106
7044
  };
7107
7045
  export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
7108
- export interface JsonApiNotificationChannelPatchAttributes {
7046
+ export interface JsonApiNotificationChannelPatchDocument {
7047
+ data: JsonApiNotificationChannelPatch;
7048
+ }
7049
+ /**
7050
+ * JSON:API representation of notificationChannel entity.
7051
+ */
7052
+ export interface JsonApiNotificationChannelPostOptionalId {
7053
+ /**
7054
+ * Object type
7055
+ */
7056
+ type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
7057
+ /**
7058
+ * API identifier of an object
7059
+ */
7060
+ id?: string;
7061
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
7062
+ }
7063
+ export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
7064
+ readonly NOTIFICATION_CHANNEL: "notificationChannel";
7065
+ };
7066
+ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
7067
+ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7109
7068
  name?: string | null;
7110
7069
  description?: string | null;
7111
7070
  destination?: JsonApiNotificationChannelOutAttributesDestination;
@@ -7116,7 +7075,7 @@ export interface JsonApiNotificationChannelPatchAttributes {
7116
7075
  /**
7117
7076
  * 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
7118
7077
  */
7119
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
7078
+ dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
7120
7079
  /**
7121
7080
  * 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}}
7122
7081
  */
@@ -7124,50 +7083,29 @@ export interface JsonApiNotificationChannelPatchAttributes {
7124
7083
  /**
7125
7084
  * 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
7126
7085
  */
7127
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
7086
+ allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
7128
7087
  /**
7129
7088
  * 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
7130
7089
  */
7131
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
7090
+ inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
7132
7091
  }
7133
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
7092
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
7134
7093
  readonly HIDDEN: "HIDDEN";
7135
7094
  readonly INTERNAL_ONLY: "INTERNAL_ONLY";
7136
7095
  readonly ALL: "ALL";
7137
7096
  };
7138
- export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
7139
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
7097
+ export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
7098
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
7140
7099
  readonly CREATOR: "CREATOR";
7141
7100
  readonly INTERNAL: "INTERNAL";
7142
7101
  readonly EXTERNAL: "EXTERNAL";
7143
7102
  };
7144
- export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
7145
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
7103
+ export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
7104
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
7146
7105
  readonly DISABLED: "DISABLED";
7147
7106
  readonly ENABLED: "ENABLED";
7148
7107
  };
7149
- export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
7150
- export interface JsonApiNotificationChannelPatchDocument {
7151
- data: JsonApiNotificationChannelPatch;
7152
- }
7153
- /**
7154
- * JSON:API representation of notificationChannel entity.
7155
- */
7156
- export interface JsonApiNotificationChannelPostOptionalId {
7157
- /**
7158
- * Object type
7159
- */
7160
- type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
7161
- /**
7162
- * API identifier of an object
7163
- */
7164
- id?: string;
7165
- attributes?: JsonApiNotificationChannelPatchAttributes;
7166
- }
7167
- export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
7168
- readonly NOTIFICATION_CHANNEL: "notificationChannel";
7169
- };
7170
- export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
7108
+ export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
7171
7109
  export interface JsonApiNotificationChannelPostOptionalIdDocument {
7172
7110
  data: JsonApiNotificationChannelPostOptionalId;
7173
7111
  }
@@ -7183,54 +7121,16 @@ export interface JsonApiOrganizationIn {
7183
7121
  * API identifier of an object
7184
7122
  */
7185
7123
  id: string;
7186
- attributes?: JsonApiOrganizationInAttributes;
7187
- relationships?: JsonApiOrganizationInRelationships;
7124
+ attributes?: JsonApiOrganizationPatchAttributes;
7125
+ relationships?: JsonApiOrganizationPatchRelationships;
7188
7126
  }
7189
7127
  export declare const JsonApiOrganizationInTypeEnum: {
7190
7128
  readonly ORGANIZATION: "organization";
7191
7129
  };
7192
7130
  export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
7193
- export interface JsonApiOrganizationInAttributes {
7194
- name?: string | null;
7195
- hostname?: string;
7196
- allowedOrigins?: Array<string>;
7197
- oauthIssuerLocation?: string;
7198
- oauthClientId?: string;
7199
- oauthClientSecret?: string;
7200
- /**
7201
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7202
- * @deprecated
7203
- */
7204
- earlyAccess?: string | null;
7205
- /**
7206
- * The early access feature identifiers. They are used to enable experimental features.
7207
- */
7208
- earlyAccessValues?: Array<string> | null;
7209
- /**
7210
- * 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.
7211
- */
7212
- oauthIssuerId?: string;
7213
- /**
7214
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
7215
- */
7216
- oauthSubjectIdClaim?: string;
7217
- /**
7218
- * 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.
7219
- */
7220
- oauthCustomAuthAttributes?: {
7221
- [key: string]: string;
7222
- };
7223
- /**
7224
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
7225
- */
7226
- oauthCustomScopes?: Array<string> | null;
7227
- }
7228
7131
  export interface JsonApiOrganizationInDocument {
7229
7132
  data: JsonApiOrganizationIn;
7230
7133
  }
7231
- export interface JsonApiOrganizationInRelationships {
7232
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7233
- }
7234
7134
  /**
7235
7135
  * JSON:API representation of organization entity.
7236
7136
  */
@@ -7255,8 +7155,6 @@ export interface JsonApiOrganizationOutAttributes {
7255
7155
  name?: string | null;
7256
7156
  hostname?: string;
7257
7157
  allowedOrigins?: Array<string>;
7258
- oauthIssuerLocation?: string;
7259
- oauthClientId?: string;
7260
7158
  /**
7261
7159
  * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7262
7160
  * @deprecated
@@ -7266,25 +7164,7 @@ export interface JsonApiOrganizationOutAttributes {
7266
7164
  * The early access feature identifiers. They are used to enable experimental features.
7267
7165
  */
7268
7166
  earlyAccessValues?: Array<string> | null;
7269
- /**
7270
- * 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.
7271
- */
7272
- oauthIssuerId?: string;
7273
7167
  cacheSettings?: JsonApiOrganizationOutAttributesCacheSettings;
7274
- /**
7275
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
7276
- */
7277
- oauthSubjectIdClaim?: string;
7278
- /**
7279
- * 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.
7280
- */
7281
- oauthCustomAuthAttributes?: {
7282
- [key: string]: string;
7283
- };
7284
- /**
7285
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
7286
- */
7287
- oauthCustomScopes?: Array<string> | null;
7288
7168
  }
7289
7169
  export interface JsonApiOrganizationOutAttributesCacheSettings {
7290
7170
  extraCacheBudget?: number;
@@ -7321,7 +7201,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizat
7321
7201
  export interface JsonApiOrganizationOutRelationships {
7322
7202
  bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7323
7203
  bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7324
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7204
+ identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7325
7205
  }
7326
7206
  export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7327
7207
  data: JsonApiUserLinkage | null;
@@ -7329,9 +7209,6 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7329
7209
  export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7330
7210
  data: JsonApiUserGroupLinkage | null;
7331
7211
  }
7332
- export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
7333
- data: JsonApiIdentityProviderLinkage | null;
7334
- }
7335
7212
  /**
7336
7213
  * JSON:API representation of patching organization entity.
7337
7214
  */
@@ -7344,16 +7221,36 @@ export interface JsonApiOrganizationPatch {
7344
7221
  * API identifier of an object
7345
7222
  */
7346
7223
  id: string;
7347
- attributes?: JsonApiOrganizationInAttributes;
7348
- relationships?: JsonApiOrganizationInRelationships;
7224
+ attributes?: JsonApiOrganizationPatchAttributes;
7225
+ relationships?: JsonApiOrganizationPatchRelationships;
7349
7226
  }
7350
7227
  export declare const JsonApiOrganizationPatchTypeEnum: {
7351
7228
  readonly ORGANIZATION: "organization";
7352
7229
  };
7353
7230
  export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
7231
+ export interface JsonApiOrganizationPatchAttributes {
7232
+ name?: string | null;
7233
+ hostname?: string;
7234
+ allowedOrigins?: Array<string>;
7235
+ /**
7236
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7237
+ * @deprecated
7238
+ */
7239
+ earlyAccess?: string | null;
7240
+ /**
7241
+ * The early access feature identifiers. They are used to enable experimental features.
7242
+ */
7243
+ earlyAccessValues?: Array<string> | null;
7244
+ }
7354
7245
  export interface JsonApiOrganizationPatchDocument {
7355
7246
  data: JsonApiOrganizationPatch;
7356
7247
  }
7248
+ export interface JsonApiOrganizationPatchRelationships {
7249
+ identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7250
+ }
7251
+ export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
7252
+ data: JsonApiIdentityProviderLinkage | null;
7253
+ }
7357
7254
  /**
7358
7255
  * JSON:API representation of organizationSetting entity.
7359
7256
  */
@@ -7366,7 +7263,7 @@ export interface JsonApiOrganizationSettingIn {
7366
7263
  * API identifier of an object
7367
7264
  */
7368
7265
  id: string;
7369
- attributes?: JsonApiUserSettingOutAttributes;
7266
+ attributes?: JsonApiOrganizationSettingOutAttributes;
7370
7267
  }
7371
7268
  export declare const JsonApiOrganizationSettingInTypeEnum: {
7372
7269
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7387,12 +7284,54 @@ export interface JsonApiOrganizationSettingOut {
7387
7284
  * API identifier of an object
7388
7285
  */
7389
7286
  id: string;
7390
- attributes?: JsonApiUserSettingOutAttributes;
7287
+ attributes?: JsonApiOrganizationSettingOutAttributes;
7391
7288
  }
7392
7289
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
7393
7290
  readonly ORGANIZATION_SETTING: "organizationSetting";
7394
7291
  };
7395
7292
  export type JsonApiOrganizationSettingOutTypeEnum = (typeof JsonApiOrganizationSettingOutTypeEnum)[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
7293
+ export interface JsonApiOrganizationSettingOutAttributes {
7294
+ /**
7295
+ * Free-form JSON content. Maximum supported length is 15000 characters.
7296
+ */
7297
+ content?: object;
7298
+ type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
7299
+ }
7300
+ export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
7301
+ readonly TIMEZONE: "TIMEZONE";
7302
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
7303
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
7304
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
7305
+ readonly WHITE_LABELING: "WHITE_LABELING";
7306
+ readonly LOCALE: "LOCALE";
7307
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
7308
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
7309
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
7310
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
7311
+ readonly WEEK_START: "WEEK_START";
7312
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
7313
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
7314
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
7315
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
7316
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
7317
+ readonly ALERT: "ALERT";
7318
+ readonly SEPARATORS: "SEPARATORS";
7319
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
7320
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
7321
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
7322
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
7323
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
7324
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
7325
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
7326
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
7327
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
7328
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
7329
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
7330
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
7331
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
7332
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
7333
+ };
7334
+ export type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
7396
7335
  export interface JsonApiOrganizationSettingOutDocument {
7397
7336
  data: JsonApiOrganizationSettingOut;
7398
7337
  links?: ObjectLinks;
@@ -7403,7 +7342,7 @@ export interface JsonApiOrganizationSettingOutDocument {
7403
7342
  export interface JsonApiOrganizationSettingOutList {
7404
7343
  data: Array<JsonApiOrganizationSettingOutWithLinks>;
7405
7344
  links?: ListLinks;
7406
- meta?: JsonApiAggregatedFactOutListMeta;
7345
+ meta?: JsonApiColorPaletteOutListMeta;
7407
7346
  }
7408
7347
  export interface JsonApiOrganizationSettingOutWithLinks {
7409
7348
  /**
@@ -7414,7 +7353,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
7414
7353
  * API identifier of an object
7415
7354
  */
7416
7355
  id: string;
7417
- attributes?: JsonApiUserSettingOutAttributes;
7356
+ attributes?: JsonApiOrganizationSettingOutAttributes;
7418
7357
  links?: ObjectLinks;
7419
7358
  }
7420
7359
  export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
@@ -7433,7 +7372,7 @@ export interface JsonApiOrganizationSettingPatch {
7433
7372
  * API identifier of an object
7434
7373
  */
7435
7374
  id: string;
7436
- attributes?: JsonApiUserSettingOutAttributes;
7375
+ attributes?: JsonApiOrganizationSettingOutAttributes;
7437
7376
  }
7438
7377
  export declare const JsonApiOrganizationSettingPatchTypeEnum: {
7439
7378
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7491,7 +7430,7 @@ export interface JsonApiThemeOutDocument {
7491
7430
  export interface JsonApiThemeOutList {
7492
7431
  data: Array<JsonApiThemeOutWithLinks>;
7493
7432
  links?: ListLinks;
7494
- meta?: JsonApiAggregatedFactOutListMeta;
7433
+ meta?: JsonApiColorPaletteOutListMeta;
7495
7434
  }
7496
7435
  export interface JsonApiThemeOutWithLinks {
7497
7436
  /**
@@ -7564,7 +7503,7 @@ export interface JsonApiUserDataFilterOut {
7564
7503
  * API identifier of an object
7565
7504
  */
7566
7505
  id: string;
7567
- meta?: JsonApiDatasetOutMeta;
7506
+ meta?: JsonApiVisualizationObjectOutMeta;
7568
7507
  attributes: JsonApiUserDataFilterOutAttributes;
7569
7508
  relationships?: JsonApiUserDataFilterOutRelationships;
7570
7509
  }
@@ -7597,7 +7536,7 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
7597
7536
  export interface JsonApiUserDataFilterOutList {
7598
7537
  data: Array<JsonApiUserDataFilterOutWithLinks>;
7599
7538
  links?: ListLinks;
7600
- meta?: JsonApiAggregatedFactOutListMeta;
7539
+ meta?: JsonApiColorPaletteOutListMeta;
7601
7540
  /**
7602
7541
  * Included resources
7603
7542
  */
@@ -7606,11 +7545,11 @@ export interface JsonApiUserDataFilterOutList {
7606
7545
  export interface JsonApiUserDataFilterOutRelationships {
7607
7546
  user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7608
7547
  userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7609
- facts?: JsonApiDatasetOutRelationshipsFacts;
7610
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
7548
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
7549
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
7611
7550
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
7612
7551
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
7613
- datasets?: JsonApiDatasetOutRelationshipsReferences;
7552
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
7614
7553
  }
7615
7554
  export interface JsonApiUserDataFilterOutWithLinks {
7616
7555
  /**
@@ -7621,7 +7560,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
7621
7560
  * API identifier of an object
7622
7561
  */
7623
7562
  id: string;
7624
- meta?: JsonApiDatasetOutMeta;
7563
+ meta?: JsonApiVisualizationObjectOutMeta;
7625
7564
  attributes: JsonApiUserDataFilterOutAttributes;
7626
7565
  relationships?: JsonApiUserDataFilterOutRelationships;
7627
7566
  links?: ObjectLinks;
@@ -7754,14 +7693,20 @@ export interface JsonApiUserGroupOutDocument {
7754
7693
  export interface JsonApiUserGroupOutList {
7755
7694
  data: Array<JsonApiUserGroupOutWithLinks>;
7756
7695
  links?: ListLinks;
7757
- meta?: JsonApiAggregatedFactOutListMeta;
7696
+ meta?: JsonApiColorPaletteOutListMeta;
7758
7697
  /**
7759
7698
  * Included resources
7760
7699
  */
7761
7700
  included?: Array<JsonApiUserGroupOutWithLinks>;
7762
7701
  }
7763
7702
  export interface JsonApiUserGroupOutRelationships {
7764
- parents?: JsonApiUserOutRelationshipsUserGroups;
7703
+ parents?: JsonApiUserGroupOutRelationshipsParents;
7704
+ }
7705
+ export interface JsonApiUserGroupOutRelationshipsParents {
7706
+ /**
7707
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
7708
+ */
7709
+ data: Array<JsonApiUserGroupLinkage>;
7765
7710
  }
7766
7711
  export interface JsonApiUserGroupOutWithLinks {
7767
7712
  /**
@@ -7846,7 +7791,7 @@ export interface JsonApiUserIdentifierOutDocument {
7846
7791
  export interface JsonApiUserIdentifierOutList {
7847
7792
  data: Array<JsonApiUserIdentifierOutWithLinks>;
7848
7793
  links?: ListLinks;
7849
- meta?: JsonApiAggregatedFactOutListMeta;
7794
+ meta?: JsonApiColorPaletteOutListMeta;
7850
7795
  }
7851
7796
  export interface JsonApiUserIdentifierOutWithLinks {
7852
7797
  /**
@@ -7936,20 +7881,14 @@ export interface JsonApiUserOutDocument {
7936
7881
  export interface JsonApiUserOutList {
7937
7882
  data: Array<JsonApiUserOutWithLinks>;
7938
7883
  links?: ListLinks;
7939
- meta?: JsonApiAggregatedFactOutListMeta;
7884
+ meta?: JsonApiColorPaletteOutListMeta;
7940
7885
  /**
7941
7886
  * Included resources
7942
7887
  */
7943
7888
  included?: Array<JsonApiUserGroupOutWithLinks>;
7944
7889
  }
7945
7890
  export interface JsonApiUserOutRelationships {
7946
- userGroups?: JsonApiUserOutRelationshipsUserGroups;
7947
- }
7948
- export interface JsonApiUserOutRelationshipsUserGroups {
7949
- /**
7950
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
7951
- */
7952
- data: Array<JsonApiUserGroupLinkage>;
7891
+ userGroups?: JsonApiUserGroupOutRelationshipsParents;
7953
7892
  }
7954
7893
  export interface JsonApiUserOutWithLinks {
7955
7894
  /**
@@ -8002,7 +7941,7 @@ export interface JsonApiUserSettingIn {
8002
7941
  * API identifier of an object
8003
7942
  */
8004
7943
  id: string;
8005
- attributes?: JsonApiUserSettingOutAttributes;
7944
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8006
7945
  }
8007
7946
  export declare const JsonApiUserSettingInTypeEnum: {
8008
7947
  readonly USER_SETTING: "userSetting";
@@ -8023,54 +7962,12 @@ export interface JsonApiUserSettingOut {
8023
7962
  * API identifier of an object
8024
7963
  */
8025
7964
  id: string;
8026
- attributes?: JsonApiUserSettingOutAttributes;
7965
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8027
7966
  }
8028
7967
  export declare const JsonApiUserSettingOutTypeEnum: {
8029
7968
  readonly USER_SETTING: "userSetting";
8030
7969
  };
8031
7970
  export type JsonApiUserSettingOutTypeEnum = (typeof JsonApiUserSettingOutTypeEnum)[keyof typeof JsonApiUserSettingOutTypeEnum];
8032
- export interface JsonApiUserSettingOutAttributes {
8033
- /**
8034
- * Free-form JSON content. Maximum supported length is 15000 characters.
8035
- */
8036
- content?: object;
8037
- type?: JsonApiUserSettingOutAttributesTypeEnum;
8038
- }
8039
- export declare const JsonApiUserSettingOutAttributesTypeEnum: {
8040
- readonly TIMEZONE: "TIMEZONE";
8041
- readonly ACTIVE_THEME: "ACTIVE_THEME";
8042
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
8043
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
8044
- readonly WHITE_LABELING: "WHITE_LABELING";
8045
- readonly LOCALE: "LOCALE";
8046
- readonly METADATA_LOCALE: "METADATA_LOCALE";
8047
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
8048
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
8049
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
8050
- readonly WEEK_START: "WEEK_START";
8051
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
8052
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
8053
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
8054
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
8055
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
8056
- readonly ALERT: "ALERT";
8057
- readonly SEPARATORS: "SEPARATORS";
8058
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
8059
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
8060
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
8061
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
8062
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
8063
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
8064
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
8065
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
8066
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
8067
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
8068
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
8069
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
8070
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
8071
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
8072
- };
8073
- export type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
8074
7971
  export interface JsonApiUserSettingOutDocument {
8075
7972
  data: JsonApiUserSettingOut;
8076
7973
  links?: ObjectLinks;
@@ -8081,7 +7978,7 @@ export interface JsonApiUserSettingOutDocument {
8081
7978
  export interface JsonApiUserSettingOutList {
8082
7979
  data: Array<JsonApiUserSettingOutWithLinks>;
8083
7980
  links?: ListLinks;
8084
- meta?: JsonApiAggregatedFactOutListMeta;
7981
+ meta?: JsonApiColorPaletteOutListMeta;
8085
7982
  }
8086
7983
  export interface JsonApiUserSettingOutWithLinks {
8087
7984
  /**
@@ -8092,7 +7989,7 @@ export interface JsonApiUserSettingOutWithLinks {
8092
7989
  * API identifier of an object
8093
7990
  */
8094
7991
  id: string;
8095
- attributes?: JsonApiUserSettingOutAttributes;
7992
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8096
7993
  links?: ObjectLinks;
8097
7994
  }
8098
7995
  export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
@@ -8111,12 +8008,23 @@ export interface JsonApiVisualizationObjectIn {
8111
8008
  * API identifier of an object
8112
8009
  */
8113
8010
  id: string;
8114
- attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
8011
+ attributes: JsonApiVisualizationObjectInAttributes;
8115
8012
  }
8116
8013
  export declare const JsonApiVisualizationObjectInTypeEnum: {
8117
8014
  readonly VISUALIZATION_OBJECT: "visualizationObject";
8118
8015
  };
8119
8016
  export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
8017
+ export interface JsonApiVisualizationObjectInAttributes {
8018
+ title?: string;
8019
+ description?: string;
8020
+ tags?: Array<string>;
8021
+ areRelationsValid?: boolean;
8022
+ /**
8023
+ * Free-form JSON content. Maximum supported length is 250000 characters.
8024
+ */
8025
+ content: object;
8026
+ isHidden?: boolean;
8027
+ }
8120
8028
  export interface JsonApiVisualizationObjectInDocument {
8121
8029
  data: JsonApiVisualizationObjectIn;
8122
8030
  }
@@ -8143,7 +8051,7 @@ export interface JsonApiVisualizationObjectOut {
8143
8051
  * API identifier of an object
8144
8052
  */
8145
8053
  id: string;
8146
- meta?: JsonApiDatasetOutMeta;
8054
+ meta?: JsonApiVisualizationObjectOutMeta;
8147
8055
  attributes: JsonApiVisualizationObjectOutAttributes;
8148
8056
  relationships?: JsonApiVisualizationObjectOutRelationships;
8149
8057
  }
@@ -8178,24 +8086,60 @@ export interface JsonApiVisualizationObjectOutDocument {
8178
8086
  export interface JsonApiVisualizationObjectOutList {
8179
8087
  data: Array<JsonApiVisualizationObjectOutWithLinks>;
8180
8088
  links?: ListLinks;
8181
- meta?: JsonApiAggregatedFactOutListMeta;
8089
+ meta?: JsonApiColorPaletteOutListMeta;
8182
8090
  /**
8183
8091
  * Included resources
8184
8092
  */
8185
8093
  included?: Array<JsonApiMetricOutIncludes>;
8186
8094
  }
8095
+ export interface JsonApiVisualizationObjectOutMeta {
8096
+ origin?: JsonApiVisualizationObjectOutMetaOrigin;
8097
+ }
8098
+ export interface JsonApiVisualizationObjectOutMetaOrigin {
8099
+ /**
8100
+ * defines type of the origin of the entity
8101
+ */
8102
+ originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
8103
+ /**
8104
+ * defines id of the workspace where the entity comes from
8105
+ */
8106
+ originId: string;
8107
+ }
8108
+ export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
8109
+ readonly NATIVE: "NATIVE";
8110
+ readonly PARENT: "PARENT";
8111
+ };
8112
+ export type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
8187
8113
  export interface JsonApiVisualizationObjectOutRelationships {
8188
8114
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8189
8115
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8190
- facts?: JsonApiDatasetOutRelationshipsFacts;
8191
- attributes?: JsonApiDatasetOutRelationshipsAttributes;
8116
+ facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
8117
+ attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
8192
8118
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
8193
8119
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
8194
- datasets?: JsonApiDatasetOutRelationshipsReferences;
8120
+ datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
8121
+ }
8122
+ export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
8123
+ /**
8124
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8125
+ */
8126
+ data: Array<JsonApiAttributeLinkage>;
8195
8127
  }
8196
8128
  export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
8197
8129
  data: JsonApiUserIdentifierLinkage | null;
8198
8130
  }
8131
+ export interface JsonApiVisualizationObjectOutRelationshipsDatasets {
8132
+ /**
8133
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8134
+ */
8135
+ data: Array<JsonApiDatasetLinkage>;
8136
+ }
8137
+ export interface JsonApiVisualizationObjectOutRelationshipsFacts {
8138
+ /**
8139
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8140
+ */
8141
+ data: Array<JsonApiFactLinkage>;
8142
+ }
8199
8143
  export interface JsonApiVisualizationObjectOutRelationshipsLabels {
8200
8144
  /**
8201
8145
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -8217,7 +8161,7 @@ export interface JsonApiVisualizationObjectOutWithLinks {
8217
8161
  * API identifier of an object
8218
8162
  */
8219
8163
  id: string;
8220
- meta?: JsonApiDatasetOutMeta;
8164
+ meta?: JsonApiVisualizationObjectOutMeta;
8221
8165
  attributes: JsonApiVisualizationObjectOutAttributes;
8222
8166
  relationships?: JsonApiVisualizationObjectOutRelationships;
8223
8167
  links?: ObjectLinks;
@@ -8270,23 +8214,12 @@ export interface JsonApiVisualizationObjectPostOptionalId {
8270
8214
  * API identifier of an object
8271
8215
  */
8272
8216
  id?: string;
8273
- attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
8217
+ attributes: JsonApiVisualizationObjectInAttributes;
8274
8218
  }
8275
8219
  export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
8276
8220
  readonly VISUALIZATION_OBJECT: "visualizationObject";
8277
8221
  };
8278
8222
  export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
8279
- export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
8280
- title?: string;
8281
- description?: string;
8282
- tags?: Array<string>;
8283
- areRelationsValid?: boolean;
8284
- /**
8285
- * Free-form JSON content. Maximum supported length is 250000 characters.
8286
- */
8287
- content: object;
8288
- isHidden?: boolean;
8289
- }
8290
8223
  export interface JsonApiVisualizationObjectPostOptionalIdDocument {
8291
8224
  data: JsonApiVisualizationObjectPostOptionalId;
8292
8225
  }
@@ -8319,20 +8252,20 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
8319
8252
  export interface JsonApiWorkspaceAutomationOutList {
8320
8253
  data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
8321
8254
  links?: ListLinks;
8322
- meta?: JsonApiAggregatedFactOutListMeta;
8255
+ meta?: JsonApiColorPaletteOutListMeta;
8323
8256
  /**
8324
8257
  * Included resources
8325
8258
  */
8326
8259
  included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
8327
8260
  }
8328
8261
  export interface JsonApiWorkspaceAutomationOutRelationships {
8329
- workspace?: JsonApiWorkspacePatchRelationshipsParent;
8330
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
8331
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
8262
+ workspace?: JsonApiWorkspaceOutRelationshipsParent;
8263
+ notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
8264
+ analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
8332
8265
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8333
8266
  modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
8334
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
8335
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
8267
+ exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
8268
+ recipients?: JsonApiAutomationPatchRelationshipsRecipients;
8336
8269
  automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
8337
8270
  }
8338
8271
  export interface JsonApiWorkspaceAutomationOutWithLinks {
@@ -8397,7 +8330,7 @@ export interface JsonApiWorkspaceDataFilterOut {
8397
8330
  * API identifier of an object
8398
8331
  */
8399
8332
  id: string;
8400
- meta?: JsonApiDatasetOutMeta;
8333
+ meta?: JsonApiVisualizationObjectOutMeta;
8401
8334
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
8402
8335
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
8403
8336
  }
@@ -8424,7 +8357,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
8424
8357
  export interface JsonApiWorkspaceDataFilterOutList {
8425
8358
  data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
8426
8359
  links?: ListLinks;
8427
- meta?: JsonApiAggregatedFactOutListMeta;
8360
+ meta?: JsonApiColorPaletteOutListMeta;
8428
8361
  /**
8429
8362
  * Included resources
8430
8363
  */
@@ -8448,7 +8381,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
8448
8381
  * API identifier of an object
8449
8382
  */
8450
8383
  id: string;
8451
- meta?: JsonApiDatasetOutMeta;
8384
+ meta?: JsonApiVisualizationObjectOutMeta;
8452
8385
  attributes?: JsonApiWorkspaceDataFilterOutAttributes;
8453
8386
  relationships?: JsonApiWorkspaceDataFilterOutRelationships;
8454
8387
  links?: ObjectLinks;
@@ -8491,8 +8424,8 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
8491
8424
  * API identifier of an object
8492
8425
  */
8493
8426
  id: string;
8494
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8495
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8427
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8428
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8496
8429
  }
8497
8430
  export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
8498
8431
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
@@ -8524,19 +8457,14 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
8524
8457
  * API identifier of an object
8525
8458
  */
8526
8459
  id: string;
8527
- meta?: JsonApiDatasetOutMeta;
8528
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8529
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8460
+ meta?: JsonApiVisualizationObjectOutMeta;
8461
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8462
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8530
8463
  }
8531
8464
  export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
8532
8465
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
8533
8466
  };
8534
8467
  export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
8535
- export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
8536
- title?: string;
8537
- description?: string;
8538
- filterValues?: Array<string>;
8539
- }
8540
8468
  export interface JsonApiWorkspaceDataFilterSettingOutDocument {
8541
8469
  data: JsonApiWorkspaceDataFilterSettingOut;
8542
8470
  links?: ObjectLinks;
@@ -8551,18 +8479,12 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
8551
8479
  export interface JsonApiWorkspaceDataFilterSettingOutList {
8552
8480
  data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
8553
8481
  links?: ListLinks;
8554
- meta?: JsonApiAggregatedFactOutListMeta;
8482
+ meta?: JsonApiColorPaletteOutListMeta;
8555
8483
  /**
8556
8484
  * Included resources
8557
8485
  */
8558
8486
  included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
8559
8487
  }
8560
- export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
8561
- workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
8562
- }
8563
- export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
8564
- data: JsonApiWorkspaceDataFilterLinkage | null;
8565
- }
8566
8488
  export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
8567
8489
  /**
8568
8490
  * Object type
@@ -8572,9 +8494,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
8572
8494
  * API identifier of an object
8573
8495
  */
8574
8496
  id: string;
8575
- meta?: JsonApiDatasetOutMeta;
8576
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8577
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8497
+ meta?: JsonApiVisualizationObjectOutMeta;
8498
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8499
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8578
8500
  links?: ObjectLinks;
8579
8501
  }
8580
8502
  export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
@@ -8593,16 +8515,27 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
8593
8515
  * API identifier of an object
8594
8516
  */
8595
8517
  id: string;
8596
- attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8597
- relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8518
+ attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
8519
+ relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
8598
8520
  }
8599
8521
  export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
8600
8522
  readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
8601
8523
  };
8602
8524
  export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
8525
+ export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
8526
+ title?: string;
8527
+ description?: string;
8528
+ filterValues?: Array<string>;
8529
+ }
8603
8530
  export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
8604
8531
  data: JsonApiWorkspaceDataFilterSettingPatch;
8605
8532
  }
8533
+ export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
8534
+ workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
8535
+ }
8536
+ export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
8537
+ data: JsonApiWorkspaceDataFilterLinkage | null;
8538
+ }
8606
8539
  /**
8607
8540
  * JSON:API representation of workspace entity.
8608
8541
  */
@@ -8615,8 +8548,8 @@ export interface JsonApiWorkspaceIn {
8615
8548
  * API identifier of an object
8616
8549
  */
8617
8550
  id: string;
8618
- attributes?: JsonApiWorkspacePatchAttributes;
8619
- relationships?: JsonApiWorkspacePatchRelationships;
8551
+ attributes?: JsonApiWorkspaceOutAttributes;
8552
+ relationships?: JsonApiWorkspaceOutRelationships;
8620
8553
  }
8621
8554
  export declare const JsonApiWorkspaceInTypeEnum: {
8622
8555
  readonly WORKSPACE: "workspace";
@@ -8649,13 +8582,45 @@ export interface JsonApiWorkspaceOut {
8649
8582
  */
8650
8583
  id: string;
8651
8584
  meta?: JsonApiWorkspaceOutMeta;
8652
- attributes?: JsonApiWorkspacePatchAttributes;
8653
- relationships?: JsonApiWorkspacePatchRelationships;
8585
+ attributes?: JsonApiWorkspaceOutAttributes;
8586
+ relationships?: JsonApiWorkspaceOutRelationships;
8654
8587
  }
8655
8588
  export declare const JsonApiWorkspaceOutTypeEnum: {
8656
8589
  readonly WORKSPACE: "workspace";
8657
8590
  };
8658
8591
  export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
8592
+ export interface JsonApiWorkspaceOutAttributes {
8593
+ name?: string | null;
8594
+ /**
8595
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
8596
+ * @deprecated
8597
+ */
8598
+ earlyAccess?: string | null;
8599
+ /**
8600
+ * The early access feature identifiers. They are used to enable experimental features.
8601
+ */
8602
+ earlyAccessValues?: Array<string> | null;
8603
+ description?: string | null;
8604
+ /**
8605
+ * Custom prefix of entity identifiers in workspace
8606
+ */
8607
+ prefix?: string | null;
8608
+ cacheExtraLimit?: number;
8609
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
8610
+ }
8611
+ /**
8612
+ * 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.
8613
+ */
8614
+ export interface JsonApiWorkspaceOutAttributesDataSource {
8615
+ /**
8616
+ * The ID of the used data source.
8617
+ */
8618
+ id: string;
8619
+ /**
8620
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
8621
+ */
8622
+ schemaPath?: Array<string>;
8623
+ }
8659
8624
  export interface JsonApiWorkspaceOutDocument {
8660
8625
  data: JsonApiWorkspaceOut;
8661
8626
  links?: ObjectLinks;
@@ -8670,7 +8635,7 @@ export interface JsonApiWorkspaceOutDocument {
8670
8635
  export interface JsonApiWorkspaceOutList {
8671
8636
  data: Array<JsonApiWorkspaceOutWithLinks>;
8672
8637
  links?: ListLinks;
8673
- meta?: JsonApiAggregatedFactOutListMeta;
8638
+ meta?: JsonApiColorPaletteOutListMeta;
8674
8639
  /**
8675
8640
  * Included resources
8676
8641
  */
@@ -8723,6 +8688,12 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
8723
8688
  */
8724
8689
  childrenCount: number;
8725
8690
  }
8691
+ export interface JsonApiWorkspaceOutRelationships {
8692
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
8693
+ }
8694
+ export interface JsonApiWorkspaceOutRelationshipsParent {
8695
+ data: JsonApiWorkspaceLinkage | null;
8696
+ }
8726
8697
  export interface JsonApiWorkspaceOutWithLinks {
8727
8698
  /**
8728
8699
  * Object type
@@ -8733,8 +8704,8 @@ export interface JsonApiWorkspaceOutWithLinks {
8733
8704
  */
8734
8705
  id: string;
8735
8706
  meta?: JsonApiWorkspaceOutMeta;
8736
- attributes?: JsonApiWorkspacePatchAttributes;
8737
- relationships?: JsonApiWorkspacePatchRelationships;
8707
+ attributes?: JsonApiWorkspaceOutAttributes;
8708
+ relationships?: JsonApiWorkspaceOutRelationships;
8738
8709
  links?: ObjectLinks;
8739
8710
  }
8740
8711
  export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
@@ -8753,54 +8724,16 @@ export interface JsonApiWorkspacePatch {
8753
8724
  * API identifier of an object
8754
8725
  */
8755
8726
  id: string;
8756
- attributes?: JsonApiWorkspacePatchAttributes;
8757
- relationships?: JsonApiWorkspacePatchRelationships;
8727
+ attributes?: JsonApiWorkspaceOutAttributes;
8728
+ relationships?: JsonApiWorkspaceOutRelationships;
8758
8729
  }
8759
8730
  export declare const JsonApiWorkspacePatchTypeEnum: {
8760
8731
  readonly WORKSPACE: "workspace";
8761
8732
  };
8762
8733
  export type JsonApiWorkspacePatchTypeEnum = (typeof JsonApiWorkspacePatchTypeEnum)[keyof typeof JsonApiWorkspacePatchTypeEnum];
8763
- export interface JsonApiWorkspacePatchAttributes {
8764
- name?: string | null;
8765
- /**
8766
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
8767
- * @deprecated
8768
- */
8769
- earlyAccess?: string | null;
8770
- /**
8771
- * The early access feature identifiers. They are used to enable experimental features.
8772
- */
8773
- earlyAccessValues?: Array<string> | null;
8774
- description?: string | null;
8775
- /**
8776
- * Custom prefix of entity identifiers in workspace
8777
- */
8778
- prefix?: string | null;
8779
- cacheExtraLimit?: number;
8780
- dataSource?: JsonApiWorkspacePatchAttributesDataSource;
8781
- }
8782
- /**
8783
- * 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.
8784
- */
8785
- export interface JsonApiWorkspacePatchAttributesDataSource {
8786
- /**
8787
- * The ID of the used data source.
8788
- */
8789
- id: string;
8790
- /**
8791
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
8792
- */
8793
- schemaPath?: Array<string>;
8794
- }
8795
8734
  export interface JsonApiWorkspacePatchDocument {
8796
8735
  data: JsonApiWorkspacePatch;
8797
8736
  }
8798
- export interface JsonApiWorkspacePatchRelationships {
8799
- parent?: JsonApiWorkspacePatchRelationshipsParent;
8800
- }
8801
- export interface JsonApiWorkspacePatchRelationshipsParent {
8802
- data: JsonApiWorkspaceLinkage | null;
8803
- }
8804
8737
  /**
8805
8738
  * JSON:API representation of workspaceSetting entity.
8806
8739
  */
@@ -8813,7 +8746,7 @@ export interface JsonApiWorkspaceSettingIn {
8813
8746
  * API identifier of an object
8814
8747
  */
8815
8748
  id: string;
8816
- attributes?: JsonApiUserSettingOutAttributes;
8749
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8817
8750
  }
8818
8751
  export declare const JsonApiWorkspaceSettingInTypeEnum: {
8819
8752
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8834,8 +8767,8 @@ export interface JsonApiWorkspaceSettingOut {
8834
8767
  * API identifier of an object
8835
8768
  */
8836
8769
  id: string;
8837
- meta?: JsonApiDatasetOutMeta;
8838
- attributes?: JsonApiUserSettingOutAttributes;
8770
+ meta?: JsonApiVisualizationObjectOutMeta;
8771
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8839
8772
  }
8840
8773
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
8841
8774
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8851,7 +8784,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
8851
8784
  export interface JsonApiWorkspaceSettingOutList {
8852
8785
  data: Array<JsonApiWorkspaceSettingOutWithLinks>;
8853
8786
  links?: ListLinks;
8854
- meta?: JsonApiAggregatedFactOutListMeta;
8787
+ meta?: JsonApiColorPaletteOutListMeta;
8855
8788
  }
8856
8789
  export interface JsonApiWorkspaceSettingOutWithLinks {
8857
8790
  /**
@@ -8862,8 +8795,8 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
8862
8795
  * API identifier of an object
8863
8796
  */
8864
8797
  id: string;
8865
- meta?: JsonApiDatasetOutMeta;
8866
- attributes?: JsonApiUserSettingOutAttributes;
8798
+ meta?: JsonApiVisualizationObjectOutMeta;
8799
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8867
8800
  links?: ObjectLinks;
8868
8801
  }
8869
8802
  export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
@@ -8882,7 +8815,7 @@ export interface JsonApiWorkspaceSettingPatch {
8882
8815
  * API identifier of an object
8883
8816
  */
8884
8817
  id: string;
8885
- attributes?: JsonApiUserSettingOutAttributes;
8818
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8886
8819
  }
8887
8820
  export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
8888
8821
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8903,7 +8836,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
8903
8836
  * API identifier of an object
8904
8837
  */
8905
8838
  id?: string;
8906
- attributes?: JsonApiUserSettingOutAttributes;
8839
+ attributes?: JsonApiOrganizationSettingOutAttributes;
8907
8840
  }
8908
8841
  export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
8909
8842
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9049,7 +8982,7 @@ export declare const NoteAppliesToEnum: {
9049
8982
  };
9050
8983
  export type NoteAppliesToEnum = (typeof NoteAppliesToEnum)[keyof typeof NoteAppliesToEnum];
9051
8984
  export interface Notes {
9052
- note: Array<Note>;
8985
+ note?: Array<Note>;
9053
8986
  }
9054
8987
  /**
9055
8988
  * @type NotificationChannelDestination
@@ -10275,7 +10208,7 @@ export interface WorkspaceUsers {
10275
10208
  totalCount: number;
10276
10209
  }
10277
10210
  export interface Xliff {
10278
- file: Array<any>;
10211
+ file?: Array<any>;
10279
10212
  version?: string;
10280
10213
  srcLang?: string;
10281
10214
  trgLang?: string;