@malloy-publisher/sdk 0.0.126 → 0.0.128

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.
@@ -1061,6 +1061,12 @@ export interface TrinoConnection {
1061
1061
  * @memberof TrinoConnection
1062
1062
  */
1063
1063
  'password'?: string;
1064
+ /**
1065
+ * Peaka API key for authentication with Peaka-hosted Trino clusters
1066
+ * @type {string}
1067
+ * @memberof TrinoConnection
1068
+ */
1069
+ 'peakaKey'?: string;
1064
1070
  }
1065
1071
  /**
1066
1072
  * Named model view definition
@@ -2,6 +2,7 @@ import { QueryExplorerResult } from './SourcesExplorer';
2
2
  interface ModelProps {
3
3
  onChange?: (query: QueryExplorerResult) => void;
4
4
  resourceUri: string;
5
+ runOnDemand?: boolean;
5
6
  }
6
- export default function Model({ onChange, resourceUri }: ModelProps): import("react/jsx-runtime").JSX.Element;
7
+ export default function Model({ onChange, resourceUri, runOnDemand, }: ModelProps): import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -4,6 +4,7 @@ interface ModelCellProps {
4
4
  noView?: boolean;
5
5
  annotations?: string[];
6
6
  resourceUri: string;
7
+ runOnDemand?: boolean;
7
8
  }
8
- export declare function ModelCell({ queryName, annotations, resourceUri, }: ModelCellProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function ModelCell({ queryName, annotations, resourceUri, runOnDemand, }: ModelCellProps): import("react/jsx-runtime").JSX.Element;
9
10
  export {};