@lightdash/common 0.1478.3 → 0.1478.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dbt/schemas/manifestV12.json +2191 -154
- package/dist/types/gitIntegration.d.ts +6 -0
- package/package.json +1 -1
@@ -1,9 +1,15 @@
|
|
1
1
|
export type GitIntegrationConfiguration = {
|
2
2
|
enabled: boolean;
|
3
3
|
};
|
4
|
+
export type FileChanges = {
|
5
|
+
file: string;
|
6
|
+
yml: string;
|
7
|
+
diff: string;
|
8
|
+
};
|
4
9
|
export type PullRequestCreated = {
|
5
10
|
prTitle: string;
|
6
11
|
prUrl: string;
|
12
|
+
files?: FileChanges[];
|
7
13
|
};
|
8
14
|
export type GitRepo = {
|
9
15
|
name: string;
|