@altimateai/ui-components 0.0.10-beta.8 → 0.0.13
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.
- package/dist/lineage/index.d.ts +12 -1
- package/dist/lineage/index.js +2328 -2321
- package/package.json +1 -1
package/dist/lineage/index.d.ts
CHANGED
|
@@ -166,6 +166,17 @@ interface StaticLineage {
|
|
|
166
166
|
tableEdges: [string, string][];
|
|
167
167
|
details: Details;
|
|
168
168
|
}
|
|
169
|
+
interface DbtInfoResponse {
|
|
170
|
+
dbt_info: DbtInfo | null;
|
|
171
|
+
}
|
|
172
|
+
interface DbtInfo {
|
|
173
|
+
project_name: string;
|
|
174
|
+
model_name: string;
|
|
175
|
+
full_refresh: boolean;
|
|
176
|
+
last_refreshed: string;
|
|
177
|
+
last_run_cost: number;
|
|
178
|
+
last_run_duration: number;
|
|
179
|
+
}
|
|
169
180
|
|
|
170
181
|
type LineageType = "static" | "dynamic" | "sql";
|
|
171
182
|
interface SqlLineage {
|
|
@@ -221,4 +232,4 @@ declare const ViewsTypeBadge: ({ viewsType }: {
|
|
|
221
232
|
viewsType: string;
|
|
222
233
|
}) => react_jsx_runtime.JSX.Element;
|
|
223
234
|
|
|
224
|
-
export { CLL, CllEvents, type CollectColumn, type Column, type ColumnLineage, type ColumnMeta, type Columns, type Confidence, type Details, type ExportFinalLineageArgs, type ExposureMetaData, _default as Lineage, type LineageRef, type ModalArgs, NodeIcon, type OpNodeArgs, type SelectedColumn, type SnowflakeStageMetadata, type StaticLineage, type StaticLineageDetails, type Table, type TableMeta, type Tag, type ViewsCodeModalArgs, ViewsTypeBadge };
|
|
235
|
+
export { CLL, CllEvents, type CollectColumn, type Column, type ColumnLineage, type ColumnMeta, type Columns, type Confidence, type DbtInfo, type DbtInfoResponse, type Details, type ExportFinalLineageArgs, type ExposureMetaData, _default as Lineage, type LineageRef, type ModalArgs, NodeIcon, type OpNodeArgs, type SelectedColumn, type SnowflakeStageMetadata, type StaticLineage, type StaticLineageDetails, type Table, type TableMeta, type Tag, type ViewsCodeModalArgs, ViewsTypeBadge };
|