@looker/sdk 23.8.0 → 23.10.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.
@@ -2161,7 +2161,8 @@ export declare enum ResultFormat {
2161
2161
  md = "md",
2162
2162
  txt = "txt",
2163
2163
  xlsx = "xlsx",
2164
- gsxml = "gsxml"
2164
+ gsxml = "gsxml",
2165
+ sql = "sql"
2165
2166
  }
2166
2167
  export interface IResultMakerFilterables {
2167
2168
  model?: string | null;
@@ -2516,6 +2517,24 @@ export interface IThemeSettings {
2516
2517
  center_dashboard_title?: boolean;
2517
2518
  dashboard_title_font_size?: string;
2518
2519
  box_shadow?: string;
2520
+ page_margin_top?: string;
2521
+ page_margin_bottom?: string;
2522
+ page_margin_sides?: string;
2523
+ show_explore_header?: boolean;
2524
+ show_explore_title?: boolean;
2525
+ show_explore_last_run?: boolean;
2526
+ show_explore_timezone?: boolean;
2527
+ show_explore_run_stop_button?: boolean;
2528
+ show_explore_actions_button?: boolean;
2529
+ show_look_header?: boolean;
2530
+ show_look_title?: boolean;
2531
+ show_look_last_run?: boolean;
2532
+ show_look_timezone?: boolean;
2533
+ show_look_run_stop_button?: boolean;
2534
+ show_look_actions_button?: boolean;
2535
+ tile_title_font_size?: string;
2536
+ column_gap_size?: string;
2537
+ row_gap_size?: string;
2519
2538
  }
2520
2539
  export interface ITimezone {
2521
2540
  value?: string | null;
package/lib/3.1/models.js CHANGED
@@ -77,6 +77,7 @@ var ResultFormat = function (ResultFormat) {
77
77
  ResultFormat["txt"] = "txt";
78
78
  ResultFormat["xlsx"] = "xlsx";
79
79
  ResultFormat["gsxml"] = "gsxml";
80
+ ResultFormat["sql"] = "sql";
80
81
  return ResultFormat;
81
82
  }({});
82
83
  exports.ResultFormat = ResultFormat;