@looker/sdk 26.0.0 → 26.2.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.
@@ -222,10 +222,11 @@ export declare enum Category {
222
222
  dimension = "dimension"
223
223
  }
224
224
  export interface ICertification {
225
- certification_status?: CertificationStatus;
225
+ certification_status?: CertificationStatus | null;
226
+ ui_status?: string | null;
226
227
  user_name?: string | null;
227
228
  notes?: string | null;
228
- updated_at?: Date;
229
+ updated_at?: Date | null;
229
230
  }
230
231
  export declare enum CertificationStatus {
231
232
  certified = "certified",
@@ -342,6 +343,7 @@ export interface IContentSearch {
342
343
  model?: string | null;
343
344
  created_by_id?: number | null;
344
345
  certification_status?: string | null;
346
+ parent_folder_name?: string | null;
345
347
  }
346
348
  export interface IContentSummary {
347
349
  can?: IDictionary<boolean>;
@@ -763,8 +765,9 @@ export interface IDashboard {
763
765
  title_color?: string | null;
764
766
  view_count?: number | null;
765
767
  appearance?: IDashboardAppearance;
768
+ usage_count?: number | null;
769
+ is_owner_disabled?: boolean;
766
770
  url?: string | null;
767
- layout_granularity?: string | null;
768
771
  }
769
772
  export interface IDashboardAggregateTableLookml {
770
773
  dashboard_id?: string | null;
@@ -831,6 +834,7 @@ export interface IDashboardElement {
831
834
  subtitle_text_as_html?: string | null;
832
835
  extension_id?: string | null;
833
836
  aria_description?: string | null;
837
+ certification_metadata?: ICertification;
834
838
  }
835
839
  export interface IDashboardFilter {
836
840
  can?: IDictionary<boolean>;
@@ -1706,6 +1710,8 @@ export interface ILook {
1706
1710
  updated_at?: Date | null;
1707
1711
  user_name?: string | null;
1708
1712
  view_count?: number | null;
1713
+ usage_count?: number | null;
1714
+ is_owner_disabled?: boolean;
1709
1715
  }
1710
1716
  export interface ILookBasic {
1711
1717
  can?: IDictionary<boolean>;
@@ -2009,6 +2015,8 @@ export interface ILookWithDashboards {
2009
2015
  updated_at?: Date | null;
2010
2016
  user_name?: string | null;
2011
2017
  view_count?: number | null;
2018
+ usage_count?: number | null;
2019
+ is_owner_disabled?: boolean;
2012
2020
  dashboards?: IDashboardBase[] | null;
2013
2021
  }
2014
2022
  export interface ILookWithQuery {
@@ -2044,6 +2052,8 @@ export interface ILookWithQuery {
2044
2052
  updated_at?: Date | null;
2045
2053
  user_name?: string | null;
2046
2054
  view_count?: number | null;
2055
+ usage_count?: number | null;
2056
+ is_owner_disabled?: boolean;
2047
2057
  query?: IQuery;
2048
2058
  url?: string | null;
2049
2059
  }
@@ -2076,6 +2086,7 @@ export interface IMergeQuery {
2076
2086
  sorts?: string[] | null;
2077
2087
  source_queries?: IMergeQuerySourceQuery[] | null;
2078
2088
  total?: boolean;
2089
+ limit?: string | null;
2079
2090
  vis_config?: IDictionary<string> | null;
2080
2091
  }
2081
2092
  export interface IMergeQuerySourceQuery {
@@ -2279,6 +2290,7 @@ export interface IProject {
2279
2290
  id?: string;
2280
2291
  name?: string;
2281
2292
  uses_git?: boolean;
2293
+ is_git_dev_locked?: boolean;
2282
2294
  git_remote_url?: string | null;
2283
2295
  git_username?: string | null;
2284
2296
  git_password?: string | null;
@@ -3074,6 +3086,7 @@ export interface IRequestSearchUsers {
3074
3086
  id?: string | null;
3075
3087
  first_name?: string | null;
3076
3088
  last_name?: string | null;
3089
+ full_name?: string | null;
3077
3090
  verified_looker_employee?: boolean | null;
3078
3091
  embed_user?: boolean | null;
3079
3092
  email?: string | null;
@@ -3477,6 +3490,7 @@ export interface ISetting {
3477
3490
  dashboard_auto_refresh_minimum_interval?: string | null;
3478
3491
  managed_certificate_uri?: string[] | null;
3479
3492
  content_certification_documentation_link?: string | null;
3493
+ revoke_certification_on_edits?: boolean;
3480
3494
  }
3481
3495
  export interface ISmtpNodeStatus {
3482
3496
  is_valid?: boolean;
@@ -4030,7 +4044,6 @@ export interface IWriteDashboard {
4030
4044
  tile_text_color?: string | null;
4031
4045
  title_color?: string | null;
4032
4046
  appearance?: IDashboardAppearance | null;
4033
- layout_granularity?: string | null;
4034
4047
  }
4035
4048
  export interface IWriteDashboardBase {
4036
4049
  folder?: IWriteFolderBase | null;
@@ -4059,6 +4072,7 @@ export interface IWriteDashboardElement {
4059
4072
  rich_content_json?: string | null;
4060
4073
  extension_id?: string | null;
4061
4074
  aria_description?: string | null;
4075
+ certification_metadata?: IWriteCertification | null;
4062
4076
  }
4063
4077
  export interface IWriteDashboardFilter {
4064
4078
  name?: string | null;
@@ -4298,6 +4312,7 @@ export interface IWriteMergeQuery {
4298
4312
  sorts?: string[] | null;
4299
4313
  source_queries?: IMergeQuerySourceQuery[] | null;
4300
4314
  total?: boolean;
4315
+ limit?: string | null;
4301
4316
  vis_config?: IDictionary<string> | null;
4302
4317
  }
4303
4318
  export interface IWriteMobileToken {
@@ -4524,6 +4539,7 @@ export interface IWriteSetting {
4524
4539
  dashboard_auto_refresh_minimum_interval?: string | null;
4525
4540
  managed_certificate_uri?: string[] | null;
4526
4541
  content_certification_documentation_link?: string | null;
4542
+ revoke_certification_on_edits?: boolean;
4527
4543
  }
4528
4544
  export interface IWriteSqlInterfaceQueryCreate {
4529
4545
  sql: string | null;