Skip to content

Commit

Permalink
feat: export lineage (#1484)
Browse files Browse the repository at this point in the history
feat: added build files

feat: added build

feat: added build

feat: added build files

feat: updated build files
  • Loading branch information
AdiGajbhiye authored Nov 14, 2024
1 parent 7bee661 commit 0260796
Show file tree
Hide file tree
Showing 4 changed files with 7,392 additions and 7,287 deletions.
9 changes: 6 additions & 3 deletions webview_panels/src/lib/altimate/altimate-components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ export declare type Details = Record<string, {
nodeId?: string;
name?: string;
type: string;
purpose?: string;
}>;

export declare interface ExposureMetaData {
Expand Down Expand Up @@ -257,11 +258,13 @@ declare interface LineageProviderProps {
sqlLineage?: SqlLineage;
staticLineage?: StaticLineage;
theme: "dark" | "light";
lineageType: "static" | "dynamic" | "sql";
lineageType: LineageType;
allowSyncColumnsWithDB?: boolean;
externalSidePanel?: boolean;
}

declare type LineageType = "static" | "dynamic" | "sql";

export declare const LoadingButton: ({ loading, ...rest }: Props_3) => JSX.Element;

export declare interface ModalArgs {
Expand Down Expand Up @@ -380,13 +383,13 @@ declare interface SqlLineage {
nodePositions?: Record<string, [number, number]>;
}

declare interface StaticLineage {
export declare interface StaticLineage {
selectedColumn: {
table: string;
name: string;
};
collectColumns: Record<string, CollectColumn[]>;
columnEdges?: [string, string][];
columnEdges?: [string, string, string][];
tableEdges: [string, string][];
details: Details;
}
Expand Down
2 changes: 1 addition & 1 deletion webview_panels/src/lib/altimate/main.css

Large diffs are not rendered by default.

Loading

0 comments on commit 0260796

Please sign in to comment.