@databrainhq/plugin 0.14.33 → 0.14.34

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.
@@ -11,4 +11,5 @@ export declare const logos: {
11
11
  redis: string;
12
12
  databricks: string;
13
13
  clickhouse: string;
14
+ mssql: string;
14
15
  };
@@ -1,4 +1,4 @@
1
- import { UseMetricQueryQueryInputType } from '../types/queryTypes';
1
+ import { UseMetricQueryQueryInputType } from '@/types/queryTypes';
2
2
  export declare const useMetricDataQuery: (data: UseMetricQueryQueryInputType) => import("react-query").UseQueryResult<{
3
3
  data: unknown;
4
4
  }, unknown>;
@@ -172,7 +172,7 @@ export type CustomSettings = {
172
172
  };
173
173
  export type Colors = 'primary' | 'primary-dark' | 'secondary' | 'secondary-dark' | 'alert' | 'alert-dark' | 'alert-light' | 'success' | 'success-dark' | 'success-light' | 'warning' | 'warning-dark' | 'info' | 'info-light' | 'white' | 'gray' | 'gray-dark' | 'light' | 'dark' | 'infoAlert';
174
174
  export type IconType = (typeof ICONS_LIST)[number];
175
- export type LogoType = 'redshift' | 'postgres' | 'mysql' | 'mongodb' | 'bigquery' | 'snowflake' | 'microsoft' | 'google' | 'elasticsearch' | 'redis' | 'databricks' | 'clickhouse';
175
+ export type LogoType = 'redshift' | 'postgres' | 'mysql' | 'mongodb' | 'bigquery' | 'snowflake' | 'microsoft' | 'google' | 'elasticsearch' | 'redis' | 'databricks' | 'clickhouse' | 'mssql';
176
176
  export type IconSizes = 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
177
177
  export type IconConfig = {
178
178
  size: IconSizes;
@@ -51,6 +51,7 @@ export type UseMetricQueryQueryInputType = {
51
51
  limit?: number;
52
52
  offset?: number;
53
53
  isAllClient?: boolean;
54
+ disableStringify?: boolean;
54
55
  };
55
56
  export type UseMetricQueryQueryOutputType = {
56
57
  data?: any | null;