@looker/sdk 24.18.1 → 25.0.0

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.
@@ -839,6 +839,7 @@ export interface IDBConnection {
839
839
  ssl?: boolean;
840
840
  verify_ssl?: boolean;
841
841
  tmp_db_name?: string | null;
842
+ tmp_db_host?: string | null;
842
843
  jdbc_additional_params?: string | null;
843
844
  pool_timeout?: number | null;
844
845
  dialect_name?: string | null;
@@ -1002,6 +1003,7 @@ export interface IEmbedConfig {
1002
1003
  strict_sameorigin_for_login?: boolean;
1003
1004
  look_filters?: boolean;
1004
1005
  hide_look_navigation?: boolean;
1006
+ embed_enabled?: boolean;
1005
1007
  }
1006
1008
  export interface IEmbedCookielessSessionAcquire {
1007
1009
  session_length?: number | null;
@@ -2266,6 +2268,9 @@ export interface IRequestAllLookmlModels {
2266
2268
  fields?: string | null;
2267
2269
  limit?: number | null;
2268
2270
  offset?: number | null;
2271
+ exclude_empty?: boolean | null;
2272
+ exclude_hidden?: boolean | null;
2273
+ include_internal?: boolean | null;
2269
2274
  }
2270
2275
  export interface IRequestAllRoles {
2271
2276
  fields?: string | null;
@@ -2348,6 +2353,11 @@ export interface IRequestContentThumbnail {
2348
2353
  width?: number | null;
2349
2354
  height?: number | null;
2350
2355
  }
2356
+ export interface IRequestContentValidation {
2357
+ fields?: string | null;
2358
+ project_names?: DelimArray<string> | null;
2359
+ space_ids?: DelimArray<string> | null;
2360
+ }
2351
2361
  export interface IRequestCreateDashboardElement {
2352
2362
  body: IWriteDashboardElement;
2353
2363
  fields?: string | null;
@@ -3141,6 +3151,7 @@ export interface ISetting {
3141
3151
  login_notification_text?: string | null;
3142
3152
  dashboard_auto_refresh_restriction?: boolean;
3143
3153
  dashboard_auto_refresh_minimum_interval?: string | null;
3154
+ managed_certificate_uri?: string | null;
3144
3155
  }
3145
3156
  export interface ISmtpNodeStatus {
3146
3157
  is_valid?: boolean;
@@ -3726,6 +3737,7 @@ export interface IWriteDBConnection {
3726
3737
  ssl?: boolean;
3727
3738
  verify_ssl?: boolean;
3728
3739
  tmp_db_name?: string | null;
3740
+ tmp_db_host?: string | null;
3729
3741
  jdbc_additional_params?: string | null;
3730
3742
  pool_timeout?: number | null;
3731
3743
  dialect_name?: string | null;
@@ -3764,6 +3776,19 @@ export interface IWriteDBConnectionOverride {
3764
3776
  jdbc_additional_params?: string | null;
3765
3777
  after_connect_statements?: string | null;
3766
3778
  }
3779
+ export interface IWriteEmbedConfig {
3780
+ domain_allowlist?: string[] | null;
3781
+ alert_url_allowlist?: string[] | null;
3782
+ alert_url_param_owner?: string | null;
3783
+ alert_url_label?: string | null;
3784
+ sso_auth_enabled?: boolean;
3785
+ embed_cookieless_v2?: boolean;
3786
+ embed_content_navigation?: boolean;
3787
+ embed_content_management?: boolean;
3788
+ strict_sameorigin_for_login?: boolean;
3789
+ look_filters?: boolean;
3790
+ hide_look_navigation?: boolean;
3791
+ }
3767
3792
  export interface IWriteEmbedSecret {
3768
3793
  algorithm?: string | null;
3769
3794
  enabled?: boolean;
@@ -4077,9 +4102,10 @@ export interface IWriteSetting {
4077
4102
  override_warnings?: boolean;
4078
4103
  email_domain_allowlist?: string[] | null;
4079
4104
  embed_cookieless_v2?: boolean;
4080
- embed_config?: IEmbedConfig | null;
4105
+ embed_config?: IWriteEmbedConfig | null;
4081
4106
  dashboard_auto_refresh_restriction?: boolean;
4082
4107
  dashboard_auto_refresh_minimum_interval?: string | null;
4108
+ managed_certificate_uri?: string | null;
4083
4109
  }
4084
4110
  export interface IWriteSqlInterfaceQueryCreate {
4085
4111
  sql: string | null;