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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +543 -513
  4. package/esm/execution.d.ts +1 -1
  5. package/esm/execution.d.ts.map +1 -1
  6. package/esm/execution.js +1 -0
  7. package/esm/execution.js.map +1 -1
  8. package/esm/executionResult.d.ts +1 -1
  9. package/esm/executionResult.d.ts.map +1 -1
  10. package/esm/executionResult.js +1 -0
  11. package/esm/executionResult.js.map +1 -1
  12. package/esm/generated/afm-rest-api/api.d.ts +68 -42
  13. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  14. package/esm/generated/afm-rest-api/api.js +0 -23
  15. package/esm/generated/afm-rest-api/api.js.map +1 -1
  16. package/esm/generated/afm-rest-api/openapi-spec.json +102 -59
  17. package/esm/generated/auth-json-api/api.d.ts +0 -551
  18. package/esm/generated/auth-json-api/api.d.ts.map +1 -1
  19. package/esm/generated/auth-json-api/api.js +0 -696
  20. package/esm/generated/auth-json-api/api.js.map +1 -1
  21. package/esm/generated/auth-json-api/openapi-spec.json +0 -166
  22. package/esm/generated/automation-json-api/api.d.ts +1 -0
  23. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  24. package/esm/generated/automation-json-api/api.js.map +1 -1
  25. package/esm/generated/automation-json-api/openapi-spec.json +1 -0
  26. package/esm/generated/metadata-json-api/api.d.ts +412 -408
  27. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  28. package/esm/generated/metadata-json-api/api.js +66 -68
  29. package/esm/generated/metadata-json-api/api.js.map +1 -1
  30. package/esm/generated/metadata-json-api/openapi-spec.json +5984 -6053
  31. package/esm/generated/result-json-api/base.d.ts.map +1 -1
  32. package/esm/generated/result-json-api/base.js +1 -1
  33. package/esm/generated/result-json-api/base.js.map +1 -1
  34. package/esm/generated/result-json-api/openapi-spec.json +1 -1
  35. package/esm/index.d.ts +1 -1
  36. package/esm/index.d.ts.map +1 -1
  37. package/esm/index.js.map +1 -1
  38. package/package.json +4 -4
@@ -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
  }
@@ -2760,7 +2760,6 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
2760
2760
  readonly EXTRA_CACHE: "ExtraCache";
2761
2761
  readonly HIPAA: "Hipaa";
2762
2762
  readonly PDF_EXPORTS: "PdfExports";
2763
- readonly MANAGED_OIDC: "ManagedOIDC";
2764
2763
  readonly UI_LOCALIZATION: "UiLocalization";
2765
2764
  readonly TIER: "Tier";
2766
2765
  readonly USER_COUNT: "UserCount";
@@ -2902,6 +2901,10 @@ export interface GenerateLdmRequest {
2902
2901
  * 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
2902
  */
2904
2903
  referencePrefix?: string;
2904
+ /**
2905
+ * 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.
2906
+ */
2907
+ dateReferencePrefix?: string;
2905
2908
  /**
2906
2909
  * 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
2910
  */
@@ -3533,12 +3536,22 @@ export interface JsonApiAttributeHierarchyIn {
3533
3536
  * API identifier of an object
3534
3537
  */
3535
3538
  id: string;
3536
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
3539
+ attributes?: JsonApiAttributeHierarchyInAttributes;
3537
3540
  }
3538
3541
  export declare const JsonApiAttributeHierarchyInTypeEnum: {
3539
3542
  readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
3540
3543
  };
3541
3544
  export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
3545
+ export interface JsonApiAttributeHierarchyInAttributes {
3546
+ title?: string;
3547
+ description?: string;
3548
+ tags?: Array<string>;
3549
+ areRelationsValid?: boolean;
3550
+ /**
3551
+ * Free-form JSON content. Maximum supported length is 15000 characters.
3552
+ */
3553
+ content?: object;
3554
+ }
3542
3555
  export interface JsonApiAttributeHierarchyInDocument {
3543
3556
  data: JsonApiAttributeHierarchyIn;
3544
3557
  }
@@ -3644,22 +3657,12 @@ export interface JsonApiAttributeHierarchyPatch {
3644
3657
  * API identifier of an object
3645
3658
  */
3646
3659
  id: string;
3647
- attributes?: JsonApiAttributeHierarchyPatchAttributes;
3660
+ attributes?: JsonApiAttributeHierarchyInAttributes;
3648
3661
  }
3649
3662
  export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
3650
3663
  readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
3651
3664
  };
3652
3665
  export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
3653
- export interface JsonApiAttributeHierarchyPatchAttributes {
3654
- title?: string;
3655
- description?: string;
3656
- tags?: Array<string>;
3657
- areRelationsValid?: boolean;
3658
- /**
3659
- * Free-form JSON content. Maximum supported length is 15000 characters.
3660
- */
3661
- content?: object;
3662
- }
3663
3666
  export interface JsonApiAttributeHierarchyPatchDocument {
3664
3667
  data: JsonApiAttributeHierarchyPatch;
3665
3668
  }
@@ -3809,16 +3812,63 @@ export interface JsonApiAutomationIn {
3809
3812
  * API identifier of an object
3810
3813
  */
3811
3814
  id: string;
3812
- attributes?: JsonApiAutomationPatchAttributes;
3813
- relationships?: JsonApiAutomationPatchRelationships;
3815
+ attributes?: JsonApiAutomationInAttributes;
3816
+ relationships?: JsonApiAutomationInRelationships;
3814
3817
  }
3815
3818
  export declare const JsonApiAutomationInTypeEnum: {
3816
3819
  readonly AUTOMATION: "automation";
3817
3820
  };
3818
3821
  export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
3822
+ export interface JsonApiAutomationInAttributes {
3823
+ title?: string;
3824
+ description?: string;
3825
+ tags?: Array<string>;
3826
+ areRelationsValid?: boolean;
3827
+ /**
3828
+ * Additional details to be included in the automated message.
3829
+ */
3830
+ details?: object;
3831
+ metadata?: JsonApiAutomationOutAttributesMetadata | null;
3832
+ /**
3833
+ * Current state of the automation.
3834
+ */
3835
+ state?: JsonApiAutomationInAttributesStateEnum;
3836
+ /**
3837
+ * Specify automation evaluation mode.
3838
+ */
3839
+ evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
3840
+ schedule?: JsonApiAutomationOutAttributesSchedule;
3841
+ alert?: JsonApiAutomationOutAttributesAlert;
3842
+ tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
3843
+ visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
3844
+ imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
3845
+ rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
3846
+ slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
3847
+ dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
3848
+ /**
3849
+ * External recipients of the automation action results.
3850
+ */
3851
+ externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
3852
+ }
3853
+ export declare const JsonApiAutomationInAttributesStateEnum: {
3854
+ readonly ACTIVE: "ACTIVE";
3855
+ readonly PAUSED: "PAUSED";
3856
+ };
3857
+ export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
3858
+ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
3859
+ readonly SHARED: "SHARED";
3860
+ readonly PER_RECIPIENT: "PER_RECIPIENT";
3861
+ };
3862
+ export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
3819
3863
  export interface JsonApiAutomationInDocument {
3820
3864
  data: JsonApiAutomationIn;
3821
3865
  }
3866
+ export interface JsonApiAutomationInRelationships {
3867
+ notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
3868
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
3869
+ exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
3870
+ recipients?: JsonApiAutomationOutRelationshipsRecipients;
3871
+ }
3822
3872
  /**
3823
3873
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
3824
3874
  */
@@ -3922,6 +3972,7 @@ export interface JsonApiAutomationOutAttributesImageExportsInner {
3922
3972
  * Additional information for the automation.
3923
3973
  */
3924
3974
  export interface JsonApiAutomationOutAttributesMetadata {
3975
+ [key: string]: any;
3925
3976
  widget?: string;
3926
3977
  visibleFilters?: Array<VisibleFilter>;
3927
3978
  }
@@ -4039,63 +4090,16 @@ export interface JsonApiAutomationPatch {
4039
4090
  * API identifier of an object
4040
4091
  */
4041
4092
  id: string;
4042
- attributes?: JsonApiAutomationPatchAttributes;
4043
- relationships?: JsonApiAutomationPatchRelationships;
4093
+ attributes?: JsonApiAutomationInAttributes;
4094
+ relationships?: JsonApiAutomationInRelationships;
4044
4095
  }
4045
4096
  export declare const JsonApiAutomationPatchTypeEnum: {
4046
4097
  readonly AUTOMATION: "automation";
4047
4098
  };
4048
4099
  export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
4049
- export interface JsonApiAutomationPatchAttributes {
4050
- title?: string;
4051
- description?: string;
4052
- tags?: Array<string>;
4053
- areRelationsValid?: boolean;
4054
- /**
4055
- * Additional details to be included in the automated message.
4056
- */
4057
- details?: object;
4058
- metadata?: JsonApiAutomationOutAttributesMetadata | null;
4059
- /**
4060
- * Current state of the automation.
4061
- */
4062
- state?: JsonApiAutomationPatchAttributesStateEnum;
4063
- /**
4064
- * Specify automation evaluation mode.
4065
- */
4066
- 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>;
4075
- /**
4076
- * External recipients of the automation action results.
4077
- */
4078
- externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
4079
- }
4080
- export declare const JsonApiAutomationPatchAttributesStateEnum: {
4081
- readonly ACTIVE: "ACTIVE";
4082
- readonly PAUSED: "PAUSED";
4083
- };
4084
- export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
4085
- export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
4086
- readonly SHARED: "SHARED";
4087
- readonly PER_RECIPIENT: "PER_RECIPIENT";
4088
- };
4089
- export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
4090
4100
  export interface JsonApiAutomationPatchDocument {
4091
4101
  data: JsonApiAutomationPatch;
4092
4102
  }
4093
- export interface JsonApiAutomationPatchRelationships {
4094
- notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
4095
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
4096
- exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
4097
- recipients?: JsonApiAutomationOutRelationshipsRecipients;
4098
- }
4099
4103
  /**
4100
4104
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
4101
4105
  */
@@ -4277,12 +4281,19 @@ export interface JsonApiCookieSecurityConfigurationIn {
4277
4281
  * API identifier of an object
4278
4282
  */
4279
4283
  id: string;
4280
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4284
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4281
4285
  }
4282
4286
  export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
4283
4287
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4284
4288
  };
4285
4289
  export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
4290
+ export interface JsonApiCookieSecurityConfigurationInAttributes {
4291
+ lastRotation?: string;
4292
+ /**
4293
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4294
+ */
4295
+ rotationInterval?: string;
4296
+ }
4286
4297
  export interface JsonApiCookieSecurityConfigurationInDocument {
4287
4298
  data: JsonApiCookieSecurityConfigurationIn;
4288
4299
  }
@@ -4298,19 +4309,12 @@ export interface JsonApiCookieSecurityConfigurationOut {
4298
4309
  * API identifier of an object
4299
4310
  */
4300
4311
  id: string;
4301
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4312
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4302
4313
  }
4303
4314
  export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
4304
4315
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
4305
4316
  };
4306
4317
  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
4318
  export interface JsonApiCookieSecurityConfigurationOutDocument {
4315
4319
  data: JsonApiCookieSecurityConfigurationOut;
4316
4320
  links?: ObjectLinks;
@@ -4327,7 +4331,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4327
4331
  * API identifier of an object
4328
4332
  */
4329
4333
  id: string;
4330
- attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
4334
+ attributes?: JsonApiCookieSecurityConfigurationInAttributes;
4331
4335
  }
4332
4336
  export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
4333
4337
  readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
@@ -4567,7 +4571,7 @@ export interface JsonApiDashboardPluginIn {
4567
4571
  * API identifier of an object
4568
4572
  */
4569
4573
  id: string;
4570
- attributes?: JsonApiDashboardPluginPatchAttributes;
4574
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4571
4575
  }
4572
4576
  export declare const JsonApiDashboardPluginInTypeEnum: {
4573
4577
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
@@ -4673,22 +4677,12 @@ export interface JsonApiDashboardPluginPatch {
4673
4677
  * API identifier of an object
4674
4678
  */
4675
4679
  id: string;
4676
- attributes?: JsonApiDashboardPluginPatchAttributes;
4680
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4677
4681
  }
4678
4682
  export declare const JsonApiDashboardPluginPatchTypeEnum: {
4679
4683
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
4680
4684
  };
4681
4685
  export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
4682
- export interface JsonApiDashboardPluginPatchAttributes {
4683
- title?: string;
4684
- description?: string;
4685
- tags?: Array<string>;
4686
- areRelationsValid?: boolean;
4687
- /**
4688
- * Free-form JSON content. Maximum supported length is 250000 characters.
4689
- */
4690
- content?: object;
4691
- }
4692
4686
  export interface JsonApiDashboardPluginPatchDocument {
4693
4687
  data: JsonApiDashboardPluginPatch;
4694
4688
  }
@@ -4704,12 +4698,22 @@ export interface JsonApiDashboardPluginPostOptionalId {
4704
4698
  * API identifier of an object
4705
4699
  */
4706
4700
  id?: string;
4707
- attributes?: JsonApiDashboardPluginPatchAttributes;
4701
+ attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
4708
4702
  }
4709
4703
  export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
4710
4704
  readonly DASHBOARD_PLUGIN: "dashboardPlugin";
4711
4705
  };
4712
4706
  export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
4707
+ export interface JsonApiDashboardPluginPostOptionalIdAttributes {
4708
+ title?: string;
4709
+ description?: string;
4710
+ tags?: Array<string>;
4711
+ areRelationsValid?: boolean;
4712
+ /**
4713
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4714
+ */
4715
+ content?: object;
4716
+ }
4713
4717
  export interface JsonApiDashboardPluginPostOptionalIdDocument {
4714
4718
  data: JsonApiDashboardPluginPostOptionalId;
4715
4719
  }
@@ -4725,7 +4729,7 @@ export interface JsonApiDataSourceIdentifierOut {
4725
4729
  * API identifier of an object
4726
4730
  */
4727
4731
  id: string;
4728
- meta?: JsonApiDataSourceOutMeta;
4732
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4729
4733
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4730
4734
  }
4731
4735
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
@@ -4778,6 +4782,17 @@ export interface JsonApiDataSourceIdentifierOutList {
4778
4782
  links?: ListLinks;
4779
4783
  meta?: JsonApiAggregatedFactOutListMeta;
4780
4784
  }
4785
+ export interface JsonApiDataSourceIdentifierOutMeta {
4786
+ /**
4787
+ * List of valid permissions for a logged-in user.
4788
+ */
4789
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
4790
+ }
4791
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
4792
+ readonly MANAGE: "MANAGE";
4793
+ readonly USE: "USE";
4794
+ };
4795
+ export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
4781
4796
  export interface JsonApiDataSourceIdentifierOutWithLinks {
4782
4797
  /**
4783
4798
  * Object type
@@ -4787,7 +4802,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
4787
4802
  * API identifier of an object
4788
4803
  */
4789
4804
  id: string;
4790
- meta?: JsonApiDataSourceOutMeta;
4805
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4791
4806
  attributes: JsonApiDataSourceIdentifierOutAttributes;
4792
4807
  links?: ObjectLinks;
4793
4808
  }
@@ -4861,7 +4876,7 @@ export interface JsonApiDataSourceInAttributes {
4861
4876
  /**
4862
4877
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4863
4878
  */
4864
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4879
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4865
4880
  /**
4866
4881
  * Determines how the results coming from a particular datasource should be cached.
4867
4882
  */
@@ -4916,7 +4931,7 @@ export interface JsonApiDataSourceOut {
4916
4931
  * API identifier of an object
4917
4932
  */
4918
4933
  id: string;
4919
- meta?: JsonApiDataSourceOutMeta;
4934
+ meta?: JsonApiDataSourceIdentifierOutMeta;
4920
4935
  attributes: JsonApiDataSourceOutAttributes;
4921
4936
  }
4922
4937
  export declare const JsonApiDataSourceOutTypeEnum: {
@@ -4951,11 +4966,11 @@ export interface JsonApiDataSourceOutAttributes {
4951
4966
  /**
4952
4967
  * Additional parameters to be used when connecting to the database providing the data for the data source.
4953
4968
  */
4954
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4969
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4955
4970
  /**
4956
4971
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
4957
4972
  */
4958
- decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
4973
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
4959
4974
  /**
4960
4975
  * Determines how the results coming from a particular datasource should be cached.
4961
4976
  */
@@ -5007,6 +5022,10 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
5007
5022
  readonly ACCESS_TOKEN: "ACCESS_TOKEN";
5008
5023
  };
5009
5024
  export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
5025
+ export interface JsonApiDataSourceOutAttributesParametersInner {
5026
+ name: string;
5027
+ value: string;
5028
+ }
5010
5029
  export interface JsonApiDataSourceOutDocument {
5011
5030
  data: JsonApiDataSourceOut;
5012
5031
  links?: ObjectLinks;
@@ -5019,17 +5038,6 @@ export interface JsonApiDataSourceOutList {
5019
5038
  links?: ListLinks;
5020
5039
  meta?: JsonApiAggregatedFactOutListMeta;
5021
5040
  }
5022
- export interface JsonApiDataSourceOutMeta {
5023
- /**
5024
- * List of valid permissions for a logged-in user.
5025
- */
5026
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
5027
- }
5028
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
5029
- readonly MANAGE: "MANAGE";
5030
- readonly USE: "USE";
5031
- };
5032
- export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
5033
5041
  export interface JsonApiDataSourceOutWithLinks {
5034
5042
  /**
5035
5043
  * Object type
@@ -5039,7 +5047,7 @@ export interface JsonApiDataSourceOutWithLinks {
5039
5047
  * API identifier of an object
5040
5048
  */
5041
5049
  id: string;
5042
- meta?: JsonApiDataSourceOutMeta;
5050
+ meta?: JsonApiDataSourceIdentifierOutMeta;
5043
5051
  attributes: JsonApiDataSourceOutAttributes;
5044
5052
  links?: ObjectLinks;
5045
5053
  }
@@ -5113,7 +5121,7 @@ export interface JsonApiDataSourcePatchAttributes {
5113
5121
  /**
5114
5122
  * Additional parameters to be used when connecting to the database providing the data for the data source.
5115
5123
  */
5116
- parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
5124
+ parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
5117
5125
  /**
5118
5126
  * Determines how the results coming from a particular datasource should be cached.
5119
5127
  */
@@ -5153,10 +5161,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
5153
5161
  readonly NEVER: "NEVER";
5154
5162
  };
5155
5163
  export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
5156
- export interface JsonApiDataSourcePatchAttributesParametersInner {
5157
- name: string;
5158
- value: string;
5159
- }
5160
5164
  export interface JsonApiDataSourcePatchDocument {
5161
5165
  data: JsonApiDataSourcePatch;
5162
5166
  }
@@ -5435,8 +5439,8 @@ export interface JsonApiExportDefinitionIn {
5435
5439
  * API identifier of an object
5436
5440
  */
5437
5441
  id: string;
5438
- attributes?: JsonApiExportDefinitionPatchAttributes;
5439
- relationships?: JsonApiExportDefinitionPatchRelationships;
5442
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5443
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5440
5444
  }
5441
5445
  export declare const JsonApiExportDefinitionInTypeEnum: {
5442
5446
  readonly EXPORT_DEFINITION: "exportDefinition";
@@ -5560,27 +5564,16 @@ export interface JsonApiExportDefinitionPatch {
5560
5564
  * API identifier of an object
5561
5565
  */
5562
5566
  id: string;
5563
- attributes?: JsonApiExportDefinitionPatchAttributes;
5564
- relationships?: JsonApiExportDefinitionPatchRelationships;
5567
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5568
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5565
5569
  }
5566
5570
  export declare const JsonApiExportDefinitionPatchTypeEnum: {
5567
5571
  readonly EXPORT_DEFINITION: "exportDefinition";
5568
5572
  };
5569
5573
  export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
5570
- export interface JsonApiExportDefinitionPatchAttributes {
5571
- title?: string;
5572
- description?: string;
5573
- tags?: Array<string>;
5574
- requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
5575
- areRelationsValid?: boolean;
5576
- }
5577
5574
  export interface JsonApiExportDefinitionPatchDocument {
5578
5575
  data: JsonApiExportDefinitionPatch;
5579
5576
  }
5580
- export interface JsonApiExportDefinitionPatchRelationships {
5581
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5582
- analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5583
- }
5584
5577
  /**
5585
5578
  * JSON:API representation of exportDefinition entity.
5586
5579
  */
@@ -5593,16 +5586,27 @@ export interface JsonApiExportDefinitionPostOptionalId {
5593
5586
  * API identifier of an object
5594
5587
  */
5595
5588
  id?: string;
5596
- attributes?: JsonApiExportDefinitionPatchAttributes;
5597
- relationships?: JsonApiExportDefinitionPatchRelationships;
5589
+ attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
5590
+ relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
5598
5591
  }
5599
5592
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
5600
5593
  readonly EXPORT_DEFINITION: "exportDefinition";
5601
5594
  };
5602
5595
  export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
5596
+ export interface JsonApiExportDefinitionPostOptionalIdAttributes {
5597
+ title?: string;
5598
+ description?: string;
5599
+ tags?: Array<string>;
5600
+ requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
5601
+ areRelationsValid?: boolean;
5602
+ }
5603
5603
  export interface JsonApiExportDefinitionPostOptionalIdDocument {
5604
5604
  data: JsonApiExportDefinitionPostOptionalId;
5605
5605
  }
5606
+ export interface JsonApiExportDefinitionPostOptionalIdRelationships {
5607
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5608
+ analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5609
+ }
5606
5610
  /**
5607
5611
  * JSON:API representation of exportTemplate entity.
5608
5612
  */
@@ -5647,9 +5651,42 @@ export interface JsonApiExportTemplateOutAttributes {
5647
5651
  * User-facing name of the Slides template.
5648
5652
  */
5649
5653
  name: string;
5650
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5651
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5654
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5655
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5656
+ }
5657
+ /**
5658
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5659
+ */
5660
+ export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
5661
+ /**
5662
+ * Export types this template applies to.
5663
+ */
5664
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
5665
+ coverSlide?: CoverSlideTemplate | null;
5666
+ introSlide?: IntroSlideTemplate | null;
5667
+ sectionSlide?: SectionSlideTemplate | null;
5668
+ contentSlide?: ContentSlideTemplate | null;
5669
+ }
5670
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
5671
+ readonly PDF: "PDF";
5672
+ readonly PPTX: "PPTX";
5673
+ };
5674
+ export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
5675
+ /**
5676
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5677
+ */
5678
+ export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
5679
+ /**
5680
+ * Export types this template applies to.
5681
+ */
5682
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
5683
+ contentSlide?: ContentSlideTemplate | null;
5652
5684
  }
5685
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
5686
+ readonly PDF: "PDF";
5687
+ readonly PPTX: "PPTX";
5688
+ };
5689
+ export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
5653
5690
  export interface JsonApiExportTemplateOutDocument {
5654
5691
  data: JsonApiExportTemplateOut;
5655
5692
  links?: ObjectLinks;
@@ -5701,42 +5738,9 @@ export interface JsonApiExportTemplatePatchAttributes {
5701
5738
  * User-facing name of the Slides template.
5702
5739
  */
5703
5740
  name?: string;
5704
- dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
5705
- widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
5706
- }
5707
- /**
5708
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
5709
- */
5710
- export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
5711
- /**
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;
5741
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
5742
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
5734
5743
  }
5735
- export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
5736
- readonly PDF: "PDF";
5737
- readonly PPTX: "PPTX";
5738
- };
5739
- export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
5740
5744
  export interface JsonApiExportTemplatePatchDocument {
5741
5745
  data: JsonApiExportTemplatePatch;
5742
5746
  }
@@ -6087,7 +6091,10 @@ export interface JsonApiFilterViewOutList {
6087
6091
  }
6088
6092
  export interface JsonApiFilterViewOutRelationships {
6089
6093
  analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6090
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6094
+ user?: JsonApiFilterViewOutRelationshipsUser;
6095
+ }
6096
+ export interface JsonApiFilterViewOutRelationshipsUser {
6097
+ data: JsonApiUserLinkage | null;
6091
6098
  }
6092
6099
  export interface JsonApiFilterViewOutWithLinks {
6093
6100
  /**
@@ -6154,45 +6161,13 @@ export interface JsonApiIdentityProviderIn {
6154
6161
  * API identifier of an object
6155
6162
  */
6156
6163
  id: string;
6157
- attributes?: JsonApiIdentityProviderPatchAttributes;
6164
+ attributes?: JsonApiIdentityProviderInAttributes;
6158
6165
  }
6159
6166
  export declare const JsonApiIdentityProviderInTypeEnum: {
6160
6167
  readonly IDENTITY_PROVIDER: "identityProvider";
6161
6168
  };
6162
6169
  export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
6163
- export interface JsonApiIdentityProviderInDocument {
6164
- data: JsonApiIdentityProviderIn;
6165
- }
6166
- /**
6167
- * The \\\"type\\\" and \\\"id\\\" to non-empty members.
6168
- */
6169
- export interface JsonApiIdentityProviderLinkage {
6170
- id: string;
6171
- type: JsonApiIdentityProviderLinkageTypeEnum;
6172
- }
6173
- export declare const JsonApiIdentityProviderLinkageTypeEnum: {
6174
- readonly IDENTITY_PROVIDER: "identityProvider";
6175
- };
6176
- export type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
6177
- /**
6178
- * JSON:API representation of identityProvider entity.
6179
- */
6180
- export interface JsonApiIdentityProviderOut {
6181
- /**
6182
- * Object type
6183
- */
6184
- type: JsonApiIdentityProviderOutTypeEnum;
6185
- /**
6186
- * API identifier of an object
6187
- */
6188
- id: string;
6189
- attributes?: JsonApiIdentityProviderOutAttributes;
6190
- }
6191
- export declare const JsonApiIdentityProviderOutTypeEnum: {
6192
- readonly IDENTITY_PROVIDER: "identityProvider";
6193
- };
6194
- export type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
6195
- export interface JsonApiIdentityProviderOutAttributes {
6170
+ export interface JsonApiIdentityProviderInAttributes {
6196
6171
  /**
6197
6172
  * 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.
6198
6173
  */
@@ -6203,12 +6178,20 @@ export interface JsonApiIdentityProviderOutAttributes {
6203
6178
  customClaimMapping?: {
6204
6179
  [key: string]: string;
6205
6180
  };
6181
+ /**
6182
+ * 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.
6183
+ */
6184
+ samlMetadata?: string;
6206
6185
  /**
6207
6186
  * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6208
6187
  */
6209
6188
  oauthClientId?: string;
6210
6189
  /**
6211
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6190
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6191
+ */
6192
+ oauthClientSecret?: string;
6193
+ /**
6194
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6212
6195
  */
6213
6196
  oauthIssuerLocation?: string;
6214
6197
  /**
@@ -6232,62 +6215,48 @@ export interface JsonApiIdentityProviderOutAttributes {
6232
6215
  /**
6233
6216
  * 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.
6234
6217
  */
6235
- idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
6218
+ idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
6236
6219
  }
6237
- export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
6220
+ export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
6238
6221
  readonly MANAGED_IDP: "MANAGED_IDP";
6239
6222
  readonly FIM_IDP: "FIM_IDP";
6240
6223
  readonly DEX_IDP: "DEX_IDP";
6241
6224
  readonly CUSTOM_IDP: "CUSTOM_IDP";
6242
6225
  };
6243
- export type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
6244
- export interface JsonApiIdentityProviderOutDocument {
6245
- data: JsonApiIdentityProviderOut;
6246
- links?: ObjectLinks;
6226
+ export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
6227
+ export interface JsonApiIdentityProviderInDocument {
6228
+ data: JsonApiIdentityProviderIn;
6247
6229
  }
6248
6230
  /**
6249
- * A JSON:API document with a list of resources
6231
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
6250
6232
  */
6251
- export interface JsonApiIdentityProviderOutList {
6252
- data: Array<JsonApiIdentityProviderOutWithLinks>;
6253
- links?: ListLinks;
6254
- meta?: JsonApiAggregatedFactOutListMeta;
6255
- }
6256
- export interface JsonApiIdentityProviderOutWithLinks {
6257
- /**
6258
- * Object type
6259
- */
6260
- type: JsonApiIdentityProviderOutWithLinksTypeEnum;
6261
- /**
6262
- * API identifier of an object
6263
- */
6233
+ export interface JsonApiIdentityProviderLinkage {
6264
6234
  id: string;
6265
- attributes?: JsonApiIdentityProviderOutAttributes;
6266
- links?: ObjectLinks;
6235
+ type: JsonApiIdentityProviderLinkageTypeEnum;
6267
6236
  }
6268
- export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
6237
+ export declare const JsonApiIdentityProviderLinkageTypeEnum: {
6269
6238
  readonly IDENTITY_PROVIDER: "identityProvider";
6270
6239
  };
6271
- export type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
6240
+ export type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
6272
6241
  /**
6273
- * JSON:API representation of patching identityProvider entity.
6242
+ * JSON:API representation of identityProvider entity.
6274
6243
  */
6275
- export interface JsonApiIdentityProviderPatch {
6244
+ export interface JsonApiIdentityProviderOut {
6276
6245
  /**
6277
6246
  * Object type
6278
6247
  */
6279
- type: JsonApiIdentityProviderPatchTypeEnum;
6248
+ type: JsonApiIdentityProviderOutTypeEnum;
6280
6249
  /**
6281
6250
  * API identifier of an object
6282
6251
  */
6283
6252
  id: string;
6284
- attributes?: JsonApiIdentityProviderPatchAttributes;
6253
+ attributes?: JsonApiIdentityProviderOutAttributes;
6285
6254
  }
6286
- export declare const JsonApiIdentityProviderPatchTypeEnum: {
6255
+ export declare const JsonApiIdentityProviderOutTypeEnum: {
6287
6256
  readonly IDENTITY_PROVIDER: "identityProvider";
6288
6257
  };
6289
- export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
6290
- export interface JsonApiIdentityProviderPatchAttributes {
6258
+ export type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
6259
+ export interface JsonApiIdentityProviderOutAttributes {
6291
6260
  /**
6292
6261
  * 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
6262
  */
@@ -6298,18 +6267,10 @@ export interface JsonApiIdentityProviderPatchAttributes {
6298
6267
  customClaimMapping?: {
6299
6268
  [key: string]: string;
6300
6269
  };
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
6270
  /**
6306
6271
  * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
6307
6272
  */
6308
6273
  oauthClientId?: string;
6309
- /**
6310
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
6311
- */
6312
- oauthClientSecret?: string;
6313
6274
  /**
6314
6275
  * The location of your OIDC provider. This field is mandatory for OIDC IdP.
6315
6276
  */
@@ -6335,15 +6296,61 @@ export interface JsonApiIdentityProviderPatchAttributes {
6335
6296
  /**
6336
6297
  * 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
6298
  */
6338
- idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
6299
+ idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
6339
6300
  }
6340
- export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
6301
+ export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
6341
6302
  readonly MANAGED_IDP: "MANAGED_IDP";
6342
6303
  readonly FIM_IDP: "FIM_IDP";
6343
6304
  readonly DEX_IDP: "DEX_IDP";
6344
6305
  readonly CUSTOM_IDP: "CUSTOM_IDP";
6345
6306
  };
6346
- export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
6307
+ export type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
6308
+ export interface JsonApiIdentityProviderOutDocument {
6309
+ data: JsonApiIdentityProviderOut;
6310
+ links?: ObjectLinks;
6311
+ }
6312
+ /**
6313
+ * A JSON:API document with a list of resources
6314
+ */
6315
+ export interface JsonApiIdentityProviderOutList {
6316
+ data: Array<JsonApiIdentityProviderOutWithLinks>;
6317
+ links?: ListLinks;
6318
+ meta?: JsonApiAggregatedFactOutListMeta;
6319
+ }
6320
+ export interface JsonApiIdentityProviderOutWithLinks {
6321
+ /**
6322
+ * Object type
6323
+ */
6324
+ type: JsonApiIdentityProviderOutWithLinksTypeEnum;
6325
+ /**
6326
+ * API identifier of an object
6327
+ */
6328
+ id: string;
6329
+ attributes?: JsonApiIdentityProviderOutAttributes;
6330
+ links?: ObjectLinks;
6331
+ }
6332
+ export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
6333
+ readonly IDENTITY_PROVIDER: "identityProvider";
6334
+ };
6335
+ export type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
6336
+ /**
6337
+ * JSON:API representation of patching identityProvider entity.
6338
+ */
6339
+ export interface JsonApiIdentityProviderPatch {
6340
+ /**
6341
+ * Object type
6342
+ */
6343
+ type: JsonApiIdentityProviderPatchTypeEnum;
6344
+ /**
6345
+ * API identifier of an object
6346
+ */
6347
+ id: string;
6348
+ attributes?: JsonApiIdentityProviderInAttributes;
6349
+ }
6350
+ export declare const JsonApiIdentityProviderPatchTypeEnum: {
6351
+ readonly IDENTITY_PROVIDER: "identityProvider";
6352
+ };
6353
+ export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
6347
6354
  export interface JsonApiIdentityProviderPatchDocument {
6348
6355
  data: JsonApiIdentityProviderPatch;
6349
6356
  }
@@ -6359,7 +6366,7 @@ export interface JsonApiJwkIn {
6359
6366
  * API identifier of an object
6360
6367
  */
6361
6368
  id: string;
6362
- attributes?: JsonApiJwkPatchAttributes;
6369
+ attributes?: JsonApiJwkOutAttributes;
6363
6370
  }
6364
6371
  export declare const JsonApiJwkInTypeEnum: {
6365
6372
  readonly JWK: "jwk";
@@ -6380,12 +6387,15 @@ export interface JsonApiJwkOut {
6380
6387
  * API identifier of an object
6381
6388
  */
6382
6389
  id: string;
6383
- attributes?: JsonApiJwkPatchAttributes;
6390
+ attributes?: JsonApiJwkOutAttributes;
6384
6391
  }
6385
6392
  export declare const JsonApiJwkOutTypeEnum: {
6386
6393
  readonly JWK: "jwk";
6387
6394
  };
6388
6395
  export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
6396
+ export interface JsonApiJwkOutAttributes {
6397
+ content?: RsaSpecification;
6398
+ }
6389
6399
  export interface JsonApiJwkOutDocument {
6390
6400
  data: JsonApiJwkOut;
6391
6401
  links?: ObjectLinks;
@@ -6407,7 +6417,7 @@ export interface JsonApiJwkOutWithLinks {
6407
6417
  * API identifier of an object
6408
6418
  */
6409
6419
  id: string;
6410
- attributes?: JsonApiJwkPatchAttributes;
6420
+ attributes?: JsonApiJwkOutAttributes;
6411
6421
  links?: ObjectLinks;
6412
6422
  }
6413
6423
  export declare const JsonApiJwkOutWithLinksTypeEnum: {
@@ -6426,15 +6436,12 @@ export interface JsonApiJwkPatch {
6426
6436
  * API identifier of an object
6427
6437
  */
6428
6438
  id: string;
6429
- attributes?: JsonApiJwkPatchAttributes;
6439
+ attributes?: JsonApiJwkOutAttributes;
6430
6440
  }
6431
6441
  export declare const JsonApiJwkPatchTypeEnum: {
6432
6442
  readonly JWK: "jwk";
6433
6443
  };
6434
6444
  export type JsonApiJwkPatchTypeEnum = (typeof JsonApiJwkPatchTypeEnum)[keyof typeof JsonApiJwkPatchTypeEnum];
6435
- export interface JsonApiJwkPatchAttributes {
6436
- content?: RsaSpecification;
6437
- }
6438
6445
  export interface JsonApiJwkPatchDocument {
6439
6446
  data: JsonApiJwkPatch;
6440
6447
  }
@@ -6966,7 +6973,7 @@ export interface JsonApiNotificationChannelIn {
6966
6973
  * API identifier of an object
6967
6974
  */
6968
6975
  id: string;
6969
- attributes?: JsonApiNotificationChannelPatchAttributes;
6976
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
6970
6977
  }
6971
6978
  export declare const JsonApiNotificationChannelInTypeEnum: {
6972
6979
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
@@ -7099,13 +7106,34 @@ export interface JsonApiNotificationChannelPatch {
7099
7106
  * API identifier of an object
7100
7107
  */
7101
7108
  id: string;
7102
- attributes?: JsonApiNotificationChannelPatchAttributes;
7109
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
7103
7110
  }
7104
7111
  export declare const JsonApiNotificationChannelPatchTypeEnum: {
7105
7112
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
7106
7113
  };
7107
7114
  export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
7108
- export interface JsonApiNotificationChannelPatchAttributes {
7115
+ export interface JsonApiNotificationChannelPatchDocument {
7116
+ data: JsonApiNotificationChannelPatch;
7117
+ }
7118
+ /**
7119
+ * JSON:API representation of notificationChannel entity.
7120
+ */
7121
+ export interface JsonApiNotificationChannelPostOptionalId {
7122
+ /**
7123
+ * Object type
7124
+ */
7125
+ type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
7126
+ /**
7127
+ * API identifier of an object
7128
+ */
7129
+ id?: string;
7130
+ attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
7131
+ }
7132
+ export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
7133
+ readonly NOTIFICATION_CHANNEL: "notificationChannel";
7134
+ };
7135
+ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
7136
+ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7109
7137
  name?: string | null;
7110
7138
  description?: string | null;
7111
7139
  destination?: JsonApiNotificationChannelOutAttributesDestination;
@@ -7116,7 +7144,7 @@ export interface JsonApiNotificationChannelPatchAttributes {
7116
7144
  /**
7117
7145
  * 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
7146
  */
7119
- dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
7147
+ dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
7120
7148
  /**
7121
7149
  * 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
7150
  */
@@ -7124,50 +7152,29 @@ export interface JsonApiNotificationChannelPatchAttributes {
7124
7152
  /**
7125
7153
  * 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
7154
  */
7127
- allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
7155
+ allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
7128
7156
  /**
7129
7157
  * 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
7158
  */
7131
- inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
7159
+ inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
7132
7160
  }
7133
- export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
7161
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
7134
7162
  readonly HIDDEN: "HIDDEN";
7135
7163
  readonly INTERNAL_ONLY: "INTERNAL_ONLY";
7136
7164
  readonly ALL: "ALL";
7137
7165
  };
7138
- export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
7139
- export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
7166
+ export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
7167
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
7140
7168
  readonly CREATOR: "CREATOR";
7141
7169
  readonly INTERNAL: "INTERNAL";
7142
7170
  readonly EXTERNAL: "EXTERNAL";
7143
7171
  };
7144
- export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
7145
- export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
7172
+ export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
7173
+ export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
7146
7174
  readonly DISABLED: "DISABLED";
7147
7175
  readonly ENABLED: "ENABLED";
7148
7176
  };
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];
7177
+ export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
7171
7178
  export interface JsonApiNotificationChannelPostOptionalIdDocument {
7172
7179
  data: JsonApiNotificationChannelPostOptionalId;
7173
7180
  }
@@ -7229,7 +7236,10 @@ export interface JsonApiOrganizationInDocument {
7229
7236
  data: JsonApiOrganizationIn;
7230
7237
  }
7231
7238
  export interface JsonApiOrganizationInRelationships {
7232
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7239
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
7240
+ }
7241
+ export interface JsonApiOrganizationInRelationshipsIdentityProvider {
7242
+ data: JsonApiIdentityProviderLinkage | null;
7233
7243
  }
7234
7244
  /**
7235
7245
  * JSON:API representation of organization entity.
@@ -7319,18 +7329,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
7319
7329
  };
7320
7330
  export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
7321
7331
  export interface JsonApiOrganizationOutRelationships {
7322
- bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7323
- bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7324
- identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7325
- }
7326
- export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7327
- data: JsonApiUserLinkage | null;
7328
- }
7329
- export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7330
- data: JsonApiUserGroupLinkage | null;
7331
- }
7332
- export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
7333
- data: JsonApiIdentityProviderLinkage | null;
7332
+ bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
7333
+ bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
7334
+ identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
7334
7335
  }
7335
7336
  /**
7336
7337
  * JSON:API representation of patching organization entity.
@@ -7366,7 +7367,7 @@ export interface JsonApiOrganizationSettingIn {
7366
7367
  * API identifier of an object
7367
7368
  */
7368
7369
  id: string;
7369
- attributes?: JsonApiUserSettingOutAttributes;
7370
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
7370
7371
  }
7371
7372
  export declare const JsonApiOrganizationSettingInTypeEnum: {
7372
7373
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7387,7 +7388,7 @@ export interface JsonApiOrganizationSettingOut {
7387
7388
  * API identifier of an object
7388
7389
  */
7389
7390
  id: string;
7390
- attributes?: JsonApiUserSettingOutAttributes;
7391
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
7391
7392
  }
7392
7393
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
7393
7394
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7414,7 +7415,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
7414
7415
  * API identifier of an object
7415
7416
  */
7416
7417
  id: string;
7417
- attributes?: JsonApiUserSettingOutAttributes;
7418
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
7418
7419
  links?: ObjectLinks;
7419
7420
  }
7420
7421
  export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
@@ -7433,7 +7434,7 @@ export interface JsonApiOrganizationSettingPatch {
7433
7434
  * API identifier of an object
7434
7435
  */
7435
7436
  id: string;
7436
- attributes?: JsonApiUserSettingOutAttributes;
7437
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
7437
7438
  }
7438
7439
  export declare const JsonApiOrganizationSettingPatchTypeEnum: {
7439
7440
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7543,7 +7544,7 @@ export interface JsonApiUserDataFilterIn {
7543
7544
  */
7544
7545
  id: string;
7545
7546
  attributes: JsonApiUserDataFilterOutAttributes;
7546
- relationships?: JsonApiUserDataFilterPatchRelationships;
7547
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7547
7548
  }
7548
7549
  export declare const JsonApiUserDataFilterInTypeEnum: {
7549
7550
  readonly USER_DATA_FILTER: "userDataFilter";
@@ -7604,14 +7605,17 @@ export interface JsonApiUserDataFilterOutList {
7604
7605
  included?: Array<JsonApiUserDataFilterOutIncludes>;
7605
7606
  }
7606
7607
  export interface JsonApiUserDataFilterOutRelationships {
7607
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7608
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7608
+ user?: JsonApiFilterViewOutRelationshipsUser;
7609
+ userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
7609
7610
  facts?: JsonApiDatasetOutRelationshipsFacts;
7610
7611
  attributes?: JsonApiDatasetOutRelationshipsAttributes;
7611
7612
  labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
7612
7613
  metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
7613
7614
  datasets?: JsonApiDatasetOutRelationshipsReferences;
7614
7615
  }
7616
+ export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
7617
+ data: JsonApiUserGroupLinkage | null;
7618
+ }
7615
7619
  export interface JsonApiUserDataFilterOutWithLinks {
7616
7620
  /**
7617
7621
  * Object type
@@ -7643,7 +7647,7 @@ export interface JsonApiUserDataFilterPatch {
7643
7647
  */
7644
7648
  id: string;
7645
7649
  attributes: JsonApiUserDataFilterPatchAttributes;
7646
- relationships?: JsonApiUserDataFilterPatchRelationships;
7650
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7647
7651
  }
7648
7652
  export declare const JsonApiUserDataFilterPatchTypeEnum: {
7649
7653
  readonly USER_DATA_FILTER: "userDataFilter";
@@ -7659,10 +7663,6 @@ export interface JsonApiUserDataFilterPatchAttributes {
7659
7663
  export interface JsonApiUserDataFilterPatchDocument {
7660
7664
  data: JsonApiUserDataFilterPatch;
7661
7665
  }
7662
- export interface JsonApiUserDataFilterPatchRelationships {
7663
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7664
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7665
- }
7666
7666
  /**
7667
7667
  * JSON:API representation of userDataFilter entity.
7668
7668
  */
@@ -7676,7 +7676,7 @@ export interface JsonApiUserDataFilterPostOptionalId {
7676
7676
  */
7677
7677
  id?: string;
7678
7678
  attributes: JsonApiUserDataFilterOutAttributes;
7679
- relationships?: JsonApiUserDataFilterPatchRelationships;
7679
+ relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
7680
7680
  }
7681
7681
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
7682
7682
  readonly USER_DATA_FILTER: "userDataFilter";
@@ -7685,6 +7685,10 @@ export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDat
7685
7685
  export interface JsonApiUserDataFilterPostOptionalIdDocument {
7686
7686
  data: JsonApiUserDataFilterPostOptionalId;
7687
7687
  }
7688
+ export interface JsonApiUserDataFilterPostOptionalIdRelationships {
7689
+ user?: JsonApiFilterViewOutRelationshipsUser;
7690
+ userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
7691
+ }
7688
7692
  /**
7689
7693
  * JSON:API representation of userGroup entity.
7690
7694
  */
@@ -8002,7 +8006,7 @@ export interface JsonApiUserSettingIn {
8002
8006
  * API identifier of an object
8003
8007
  */
8004
8008
  id: string;
8005
- attributes?: JsonApiUserSettingOutAttributes;
8009
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8006
8010
  }
8007
8011
  export declare const JsonApiUserSettingInTypeEnum: {
8008
8012
  readonly USER_SETTING: "userSetting";
@@ -8023,54 +8027,12 @@ export interface JsonApiUserSettingOut {
8023
8027
  * API identifier of an object
8024
8028
  */
8025
8029
  id: string;
8026
- attributes?: JsonApiUserSettingOutAttributes;
8030
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8027
8031
  }
8028
8032
  export declare const JsonApiUserSettingOutTypeEnum: {
8029
8033
  readonly USER_SETTING: "userSetting";
8030
8034
  };
8031
8035
  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
8036
  export interface JsonApiUserSettingOutDocument {
8075
8037
  data: JsonApiUserSettingOut;
8076
8038
  links?: ObjectLinks;
@@ -8092,7 +8054,7 @@ export interface JsonApiUserSettingOutWithLinks {
8092
8054
  * API identifier of an object
8093
8055
  */
8094
8056
  id: string;
8095
- attributes?: JsonApiUserSettingOutAttributes;
8057
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8096
8058
  links?: ObjectLinks;
8097
8059
  }
8098
8060
  export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
@@ -8326,7 +8288,7 @@ export interface JsonApiWorkspaceAutomationOutList {
8326
8288
  included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
8327
8289
  }
8328
8290
  export interface JsonApiWorkspaceAutomationOutRelationships {
8329
- workspace?: JsonApiWorkspacePatchRelationshipsParent;
8291
+ workspace?: JsonApiWorkspaceOutRelationshipsParent;
8330
8292
  notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
8331
8293
  analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
8332
8294
  createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
@@ -8615,8 +8577,8 @@ export interface JsonApiWorkspaceIn {
8615
8577
  * API identifier of an object
8616
8578
  */
8617
8579
  id: string;
8618
- attributes?: JsonApiWorkspacePatchAttributes;
8619
- relationships?: JsonApiWorkspacePatchRelationships;
8580
+ attributes?: JsonApiWorkspaceOutAttributes;
8581
+ relationships?: JsonApiWorkspaceOutRelationships;
8620
8582
  }
8621
8583
  export declare const JsonApiWorkspaceInTypeEnum: {
8622
8584
  readonly WORKSPACE: "workspace";
@@ -8649,13 +8611,45 @@ export interface JsonApiWorkspaceOut {
8649
8611
  */
8650
8612
  id: string;
8651
8613
  meta?: JsonApiWorkspaceOutMeta;
8652
- attributes?: JsonApiWorkspacePatchAttributes;
8653
- relationships?: JsonApiWorkspacePatchRelationships;
8614
+ attributes?: JsonApiWorkspaceOutAttributes;
8615
+ relationships?: JsonApiWorkspaceOutRelationships;
8654
8616
  }
8655
8617
  export declare const JsonApiWorkspaceOutTypeEnum: {
8656
8618
  readonly WORKSPACE: "workspace";
8657
8619
  };
8658
8620
  export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
8621
+ export interface JsonApiWorkspaceOutAttributes {
8622
+ name?: string | null;
8623
+ /**
8624
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
8625
+ * @deprecated
8626
+ */
8627
+ earlyAccess?: string | null;
8628
+ /**
8629
+ * The early access feature identifiers. They are used to enable experimental features.
8630
+ */
8631
+ earlyAccessValues?: Array<string> | null;
8632
+ description?: string | null;
8633
+ /**
8634
+ * Custom prefix of entity identifiers in workspace
8635
+ */
8636
+ prefix?: string | null;
8637
+ cacheExtraLimit?: number;
8638
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
8639
+ }
8640
+ /**
8641
+ * 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.
8642
+ */
8643
+ export interface JsonApiWorkspaceOutAttributesDataSource {
8644
+ /**
8645
+ * The ID of the used data source.
8646
+ */
8647
+ id: string;
8648
+ /**
8649
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
8650
+ */
8651
+ schemaPath?: Array<string>;
8652
+ }
8659
8653
  export interface JsonApiWorkspaceOutDocument {
8660
8654
  data: JsonApiWorkspaceOut;
8661
8655
  links?: ObjectLinks;
@@ -8723,6 +8717,12 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
8723
8717
  */
8724
8718
  childrenCount: number;
8725
8719
  }
8720
+ export interface JsonApiWorkspaceOutRelationships {
8721
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
8722
+ }
8723
+ export interface JsonApiWorkspaceOutRelationshipsParent {
8724
+ data: JsonApiWorkspaceLinkage | null;
8725
+ }
8726
8726
  export interface JsonApiWorkspaceOutWithLinks {
8727
8727
  /**
8728
8728
  * Object type
@@ -8733,8 +8733,8 @@ export interface JsonApiWorkspaceOutWithLinks {
8733
8733
  */
8734
8734
  id: string;
8735
8735
  meta?: JsonApiWorkspaceOutMeta;
8736
- attributes?: JsonApiWorkspacePatchAttributes;
8737
- relationships?: JsonApiWorkspacePatchRelationships;
8736
+ attributes?: JsonApiWorkspaceOutAttributes;
8737
+ relationships?: JsonApiWorkspaceOutRelationships;
8738
8738
  links?: ObjectLinks;
8739
8739
  }
8740
8740
  export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
@@ -8753,54 +8753,16 @@ export interface JsonApiWorkspacePatch {
8753
8753
  * API identifier of an object
8754
8754
  */
8755
8755
  id: string;
8756
- attributes?: JsonApiWorkspacePatchAttributes;
8757
- relationships?: JsonApiWorkspacePatchRelationships;
8756
+ attributes?: JsonApiWorkspaceOutAttributes;
8757
+ relationships?: JsonApiWorkspaceOutRelationships;
8758
8758
  }
8759
8759
  export declare const JsonApiWorkspacePatchTypeEnum: {
8760
8760
  readonly WORKSPACE: "workspace";
8761
8761
  };
8762
8762
  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
8763
  export interface JsonApiWorkspacePatchDocument {
8796
8764
  data: JsonApiWorkspacePatch;
8797
8765
  }
8798
- export interface JsonApiWorkspacePatchRelationships {
8799
- parent?: JsonApiWorkspacePatchRelationshipsParent;
8800
- }
8801
- export interface JsonApiWorkspacePatchRelationshipsParent {
8802
- data: JsonApiWorkspaceLinkage | null;
8803
- }
8804
8766
  /**
8805
8767
  * JSON:API representation of workspaceSetting entity.
8806
8768
  */
@@ -8813,7 +8775,7 @@ export interface JsonApiWorkspaceSettingIn {
8813
8775
  * API identifier of an object
8814
8776
  */
8815
8777
  id: string;
8816
- attributes?: JsonApiUserSettingOutAttributes;
8778
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8817
8779
  }
8818
8780
  export declare const JsonApiWorkspaceSettingInTypeEnum: {
8819
8781
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8835,12 +8797,54 @@ export interface JsonApiWorkspaceSettingOut {
8835
8797
  */
8836
8798
  id: string;
8837
8799
  meta?: JsonApiDatasetOutMeta;
8838
- attributes?: JsonApiUserSettingOutAttributes;
8800
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8839
8801
  }
8840
8802
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
8841
8803
  readonly WORKSPACE_SETTING: "workspaceSetting";
8842
8804
  };
8843
8805
  export type JsonApiWorkspaceSettingOutTypeEnum = (typeof JsonApiWorkspaceSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutTypeEnum];
8806
+ export interface JsonApiWorkspaceSettingOutAttributes {
8807
+ /**
8808
+ * Free-form JSON content. Maximum supported length is 15000 characters.
8809
+ */
8810
+ content?: object;
8811
+ type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
8812
+ }
8813
+ export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
8814
+ readonly TIMEZONE: "TIMEZONE";
8815
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
8816
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
8817
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
8818
+ readonly WHITE_LABELING: "WHITE_LABELING";
8819
+ readonly LOCALE: "LOCALE";
8820
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
8821
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
8822
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
8823
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
8824
+ readonly WEEK_START: "WEEK_START";
8825
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
8826
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
8827
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
8828
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
8829
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
8830
+ readonly ALERT: "ALERT";
8831
+ readonly SEPARATORS: "SEPARATORS";
8832
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
8833
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
8834
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
8835
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
8836
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
8837
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
8838
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
8839
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
8840
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
8841
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
8842
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
8843
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
8844
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
8845
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
8846
+ };
8847
+ export type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
8844
8848
  export interface JsonApiWorkspaceSettingOutDocument {
8845
8849
  data: JsonApiWorkspaceSettingOut;
8846
8850
  links?: ObjectLinks;
@@ -8863,7 +8867,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
8863
8867
  */
8864
8868
  id: string;
8865
8869
  meta?: JsonApiDatasetOutMeta;
8866
- attributes?: JsonApiUserSettingOutAttributes;
8870
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8867
8871
  links?: ObjectLinks;
8868
8872
  }
8869
8873
  export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
@@ -8882,7 +8886,7 @@ export interface JsonApiWorkspaceSettingPatch {
8882
8886
  * API identifier of an object
8883
8887
  */
8884
8888
  id: string;
8885
- attributes?: JsonApiUserSettingOutAttributes;
8889
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8886
8890
  }
8887
8891
  export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
8888
8892
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8903,7 +8907,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
8903
8907
  * API identifier of an object
8904
8908
  */
8905
8909
  id?: string;
8906
- attributes?: JsonApiUserSettingOutAttributes;
8910
+ attributes?: JsonApiWorkspaceSettingOutAttributes;
8907
8911
  }
8908
8912
  export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
8909
8913
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9049,7 +9053,7 @@ export declare const NoteAppliesToEnum: {
9049
9053
  };
9050
9054
  export type NoteAppliesToEnum = (typeof NoteAppliesToEnum)[keyof typeof NoteAppliesToEnum];
9051
9055
  export interface Notes {
9052
- note: Array<Note>;
9056
+ note?: Array<Note>;
9053
9057
  }
9054
9058
  /**
9055
9059
  * @type NotificationChannelDestination
@@ -10275,7 +10279,7 @@ export interface WorkspaceUsers {
10275
10279
  totalCount: number;
10276
10280
  }
10277
10281
  export interface Xliff {
10278
- file: Array<any>;
10282
+ file?: Array<any>;
10279
10283
  version?: string;
10280
10284
  srcLang?: string;
10281
10285
  trgLang?: string;