@looker/sdk 26.6.0 → 26.8.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.
@@ -30,6 +30,7 @@ export interface IAlert {
30
30
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
31
31
  comparison_type: ComparisonType;
32
32
  cron: string;
33
+ query_id?: string | null;
33
34
  custom_url_base?: string | null;
34
35
  custom_url_params?: string | null;
35
36
  custom_url_label?: string | null;
@@ -454,6 +455,7 @@ export interface ICIRun {
454
455
  assigned_ci_user_at?: Date | null;
455
456
  crashed_check_count?: number;
456
457
  run_url?: string;
458
+ user_attributes?: ICIRunUserAttribute[] | null;
457
459
  }
458
460
  export interface ICIRunResult {
459
461
  sql_result?: ICISqlValidatorResult;
@@ -466,6 +468,11 @@ export interface ICIRunResult {
466
468
  lookml_error?: ICIGenericError;
467
469
  generic_error?: ICIGenericError;
468
470
  }
471
+ export interface ICIRunUserAttribute {
472
+ id?: number;
473
+ name?: string;
474
+ value?: string | null;
475
+ }
469
476
  export interface ICIScheduleTrigger {
470
477
  enabled?: boolean;
471
478
  day?: string | null;
@@ -658,6 +665,7 @@ export interface IContentValidationDashboardElement {
658
665
  note_text?: string | null;
659
666
  note_text_as_html?: string | null;
660
667
  query_id?: string | null;
668
+ filter_id?: string | null;
661
669
  subtitle_text?: string | null;
662
670
  title?: string | null;
663
671
  title_hidden?: boolean;
@@ -820,6 +828,7 @@ export interface ICreateContinuousIntegrationRunRequest {
820
828
  suite_id?: string;
821
829
  branch?: string | null;
822
830
  commit?: string | null;
831
+ user_attributes?: IUserAttributeOverride[] | null;
823
832
  }
824
833
  export interface ICreateCostEstimate {
825
834
  sql?: string;
@@ -855,6 +864,7 @@ export interface ICreateDashboardFilter {
855
864
  export interface ICreateDashboardRenderTask {
856
865
  dashboard_filters?: string | null;
857
866
  dashboard_style?: string | null;
867
+ tab_ids?: string[] | null;
858
868
  }
859
869
  export interface ICreateEmbedUserRequest {
860
870
  external_user_id: string;
@@ -1057,6 +1067,7 @@ export interface IDashboard {
1057
1067
  usage_count?: number | null;
1058
1068
  is_owner_disabled?: boolean;
1059
1069
  url?: string | null;
1070
+ download_settings?: IDashboardDownloadSettings;
1060
1071
  }
1061
1072
  export interface IDashboardAggregateTableLookml {
1062
1073
  dashboard_id?: string | null;
@@ -1070,6 +1081,7 @@ export interface IDashboardAppearance {
1070
1081
  tile_background_color?: string | null;
1071
1082
  tile_shadow?: boolean | null;
1072
1083
  key_color?: string | null;
1084
+ modern_vis2026?: boolean | null;
1073
1085
  }
1074
1086
  export interface IDashboardBase {
1075
1087
  can?: IDictionary<boolean>;
@@ -1090,6 +1102,14 @@ export interface IDashboardBase {
1090
1102
  preferred_viewer?: string | null;
1091
1103
  certification_metadata?: ICertification;
1092
1104
  }
1105
+ export interface IDashboardDownloadSettings {
1106
+ format_option?: string | null;
1107
+ value_options?: string | null;
1108
+ result_options?: string | null;
1109
+ limit_options?: string | null;
1110
+ rows_limit?: number | null;
1111
+ columns_limit?: number | null;
1112
+ }
1093
1113
  export interface IDashboardElement {
1094
1114
  can?: IDictionary<boolean>;
1095
1115
  body_text?: string | null;
@@ -1108,6 +1128,7 @@ export interface IDashboardElement {
1108
1128
  note_text_as_html?: string | null;
1109
1129
  query?: IQuery;
1110
1130
  query_id?: string | null;
1131
+ filter_id?: string | null;
1111
1132
  refresh_interval?: string | null;
1112
1133
  refresh_interval_to_i?: number | null;
1113
1134
  result_maker?: IResultMakerWithIdVisConfigAndDynamicFields;
@@ -1157,6 +1178,7 @@ export interface IDashboardLayout {
1157
1178
  label?: string | null;
1158
1179
  description?: string | null;
1159
1180
  order?: number | null;
1181
+ lookml_link_id?: string | null;
1160
1182
  }
1161
1183
  export interface IDashboardLayoutComponent {
1162
1184
  can?: IDictionary<boolean>;
@@ -2181,6 +2203,7 @@ export interface ILookmlModelExploreError {
2181
2203
  }
2182
2204
  export interface ILookmlModelExploreField {
2183
2205
  align?: Align;
2206
+ available_custom_timeframes?: string[] | null;
2184
2207
  can_filter?: boolean;
2185
2208
  category?: Category | null;
2186
2209
  default_filter_value?: string | null;
@@ -2494,6 +2517,7 @@ export interface IMcpTools {
2494
2517
  get_lookml_tests?: IMcpToolSetting;
2495
2518
  run_lookml_tests?: IMcpToolSetting;
2496
2519
  create_view_from_table?: IMcpToolSetting;
2520
+ project_git_branch?: IMcpToolSetting;
2497
2521
  }
2498
2522
  export interface IMcpToolSetting {
2499
2523
  enabled?: boolean;
@@ -2535,6 +2559,7 @@ export interface IMobilePayload {
2535
2559
  dashboard_name?: string | null;
2536
2560
  dashboard_id?: string | null;
2537
2561
  query_slug?: string;
2562
+ query_id?: string | null;
2538
2563
  }
2539
2564
  export interface IMobileSettings {
2540
2565
  mobile_force_authentication?: boolean;
@@ -3155,7 +3180,6 @@ export interface IRequestRunInlineQuery {
3155
3180
  path_prefix?: string | null;
3156
3181
  rebuild_pdts?: boolean | null;
3157
3182
  server_table_calcs?: boolean | null;
3158
- enable_oauth_error_response?: boolean | null;
3159
3183
  }
3160
3184
  export interface IRequestRunLook {
3161
3185
  look_id: string;
@@ -3194,8 +3218,6 @@ export interface IRequestRunQuery {
3194
3218
  path_prefix?: string | null;
3195
3219
  rebuild_pdts?: boolean | null;
3196
3220
  server_table_calcs?: boolean | null;
3197
- source?: string | null;
3198
- enable_oauth_error_response?: boolean | null;
3199
3221
  }
3200
3222
  export interface IRequestScheduledPlansForDashboard {
3201
3223
  dashboard_id: string;
@@ -3826,6 +3848,8 @@ export interface IScheduledPlan {
3826
3848
  embed?: boolean;
3827
3849
  color_theme?: string | null;
3828
3850
  long_tables?: boolean;
3851
+ pdf_page_breaks?: boolean;
3852
+ tab_ids?: string[] | null;
3829
3853
  inline_table_width?: number | null;
3830
3854
  query_id?: string | null;
3831
3855
  id?: string;
@@ -3971,6 +3995,7 @@ export interface ISetting {
3971
3995
  revoke_certification_on_edits?: boolean;
3972
3996
  is_content_certification_enabled?: boolean;
3973
3997
  auto_certify_lookml_content?: boolean;
3998
+ ca_agent_observability?: boolean;
3974
3999
  mcp_tools?: IMcpTools;
3975
4000
  }
3976
4001
  export interface ISmtpNodeStatus {
@@ -4298,6 +4323,8 @@ export interface IUserAttribute {
4298
4323
  user_can_view?: boolean;
4299
4324
  user_can_edit?: boolean;
4300
4325
  hidden_value_domain_whitelist?: string | null;
4326
+ needed_for_ci_run?: boolean;
4327
+ value_for_ci_run?: string | null;
4301
4328
  }
4302
4329
  export declare enum UserAttributeFilterTypes {
4303
4330
  advanced_filter_string = "advanced_filter_string",
@@ -4319,6 +4346,10 @@ export interface IUserAttributeGroupValue {
4319
4346
  rank?: number | null;
4320
4347
  value?: string | null;
4321
4348
  }
4349
+ export interface IUserAttributeOverride {
4350
+ name?: string;
4351
+ value?: string;
4352
+ }
4322
4353
  export interface IUserAttributeWithValue {
4323
4354
  can?: IDictionary<boolean>;
4324
4355
  name?: string | null;
@@ -4420,6 +4451,7 @@ export interface IWriteAlert {
4420
4451
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
4421
4452
  comparison_type: ComparisonType | null;
4422
4453
  cron: string;
4454
+ query_id?: string | null;
4423
4455
  custom_url_base?: string | null;
4424
4456
  custom_url_params?: string | null;
4425
4457
  custom_url_label?: string | null;
@@ -4551,6 +4583,7 @@ export interface IWriteDashboard {
4551
4583
  refresh_interval?: string | null;
4552
4584
  folder?: IWriteFolderBase | null;
4553
4585
  title?: string | null;
4586
+ user_id?: string | null;
4554
4587
  slug?: string | null;
4555
4588
  preferred_viewer?: string | null;
4556
4589
  certification_metadata?: IWriteCertification | null;
@@ -4571,6 +4604,7 @@ export interface IWriteDashboard {
4571
4604
  tile_text_color?: string | null;
4572
4605
  title_color?: string | null;
4573
4606
  appearance?: IDashboardAppearance | null;
4607
+ download_settings?: IDashboardDownloadSettings | null;
4574
4608
  }
4575
4609
  export interface IWriteDashboardBase {
4576
4610
  folder?: IWriteFolderBase | null;
@@ -4588,6 +4622,7 @@ export interface IWriteDashboardElement {
4588
4622
  note_text?: string | null;
4589
4623
  query?: IWriteQuery | null;
4590
4624
  query_id?: string | null;
4625
+ filter_id?: string | null;
4591
4626
  refresh_interval?: string | null;
4592
4627
  result_maker?: IWriteResultMakerWithIdVisConfigAndDynamicFields | null;
4593
4628
  result_maker_id?: string | null;
@@ -4624,6 +4659,7 @@ export interface IWriteDashboardLayout {
4624
4659
  label?: string | null;
4625
4660
  description?: string | null;
4626
4661
  order?: number | null;
4662
+ lookml_link_id?: string | null;
4627
4663
  }
4628
4664
  export interface IWriteDashboardLayoutComponent {
4629
4665
  dashboard_layout_id?: string | null;
@@ -4632,6 +4668,7 @@ export interface IWriteDashboardLayoutComponent {
4632
4668
  column?: number | null;
4633
4669
  width?: number | null;
4634
4670
  height?: number | null;
4671
+ deleted?: boolean;
4635
4672
  granular_row?: number | null;
4636
4673
  granular_column?: number | null;
4637
4674
  granular_width?: number | null;
@@ -4876,6 +4913,7 @@ export interface IWriteMcpTools {
4876
4913
  get_lookml_tests?: IWriteMcpToolSetting | null;
4877
4914
  run_lookml_tests?: IWriteMcpToolSetting | null;
4878
4915
  create_view_from_table?: IWriteMcpToolSetting | null;
4916
+ project_git_branch?: IWriteMcpToolSetting | null;
4879
4917
  }
4880
4918
  export interface IWriteMcpToolSetting {
4881
4919
  enabled?: boolean;
@@ -5078,6 +5116,8 @@ export interface IWriteScheduledPlan {
5078
5116
  embed?: boolean;
5079
5117
  color_theme?: string | null;
5080
5118
  long_tables?: boolean;
5119
+ pdf_page_breaks?: boolean;
5120
+ tab_ids?: string[] | null;
5081
5121
  inline_table_width?: number | null;
5082
5122
  query_id?: string | null;
5083
5123
  }
@@ -5117,6 +5157,7 @@ export interface IWriteSetting {
5117
5157
  revoke_certification_on_edits?: boolean;
5118
5158
  is_content_certification_enabled?: boolean;
5119
5159
  auto_certify_lookml_content?: boolean;
5160
+ ca_agent_observability?: boolean;
5120
5161
  mcp_tools?: IWriteMcpTools | null;
5121
5162
  }
5122
5163
  export interface IWriteSqlInterfaceQueryCreate {
@@ -5161,6 +5202,8 @@ export interface IWriteUserAttribute {
5161
5202
  user_can_view?: boolean;
5162
5203
  user_can_edit?: boolean;
5163
5204
  hidden_value_domain_whitelist?: string | null;
5205
+ needed_for_ci_run?: boolean;
5206
+ value_for_ci_run?: string | null;
5164
5207
  }
5165
5208
  export interface IWriteUserAttributeWithValue {
5166
5209
  value?: string | null;