@looker/sdk 23.14.1 → 23.16.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.
@@ -1975,6 +1975,7 @@ export interface IProject {
1975
1975
  allow_warnings?: boolean;
1976
1976
  is_example?: boolean;
1977
1977
  dependency_status?: string | null;
1978
+ data_tests_count?: number;
1978
1979
  }
1979
1980
  export interface IProjectError {
1980
1981
  code?: string | null;
@@ -2249,6 +2250,7 @@ export interface IRequestCreateDashboardRenderTask {
2249
2250
  pdf_paper_size?: string | null;
2250
2251
  pdf_landscape?: boolean | null;
2251
2252
  long_tables?: boolean | null;
2253
+ theme?: string | null;
2252
2254
  }
2253
2255
  export interface IRequestCreateQueryTask {
2254
2256
  body: IWriteCreateQueryTask;
@@ -3023,6 +3025,16 @@ export interface ISnippet {
3023
3025
  label?: string;
3024
3026
  sql?: string;
3025
3027
  }
3028
+ export interface ISqlInterfaceQuery {
3029
+ can?: IDictionary<boolean>;
3030
+ id?: number;
3031
+ signature: string | null;
3032
+ }
3033
+ export interface ISqlInterfaceQueryCreate {
3034
+ can?: IDictionary<boolean>;
3035
+ sql: string | null;
3036
+ jdbc_client?: boolean;
3037
+ }
3026
3038
  export interface ISqlQuery {
3027
3039
  can?: IDictionary<boolean>;
3028
3040
  slug?: string;
@@ -3914,6 +3926,10 @@ export interface IWriteSetting {
3914
3926
  embed_cookieless_v2?: boolean;
3915
3927
  embed_config?: IEmbedConfig | null;
3916
3928
  }
3929
+ export interface IWriteSqlInterfaceQueryCreate {
3930
+ sql: string | null;
3931
+ jdbc_client?: boolean;
3932
+ }
3917
3933
  export interface IWriteSshServer {
3918
3934
  ssh_server_name?: string;
3919
3935
  ssh_server_host?: string;