Skip to content

Commit

Permalink
Merge branch 'master' into feat-documentation-lineage-propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesmet authored Nov 22, 2024
2 parents cc9f90a + 0c8d8a6 commit 2e09667
Show file tree
Hide file tree
Showing 7 changed files with 7,415 additions and 7,290 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ jobs:
fi
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to Visual Studio Marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"

release-openvsx-marketplace:
runs-on: ubuntu-latest
if: success() && startsWith( github.ref, 'refs/tags/')
Expand All @@ -54,3 +64,13 @@ jobs:
fi
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}

- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to openvsx marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"bugs": {
"url": "https://github.com/AltimateAI/vscode-dbt-power-user/issues"
},
"version": "0.48.5",
"version": "0.49.0",
"engines": {
"vscode": "^1.81.0"
},
Expand Down
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 2e09667

Please sign in to comment.