@lightdash/common 0.1478.4 → 0.1478.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
|