|
1 | 1 | import { Ai } from "./ai"; |
2 | 2 | import { Branches } from "./branches"; |
| 3 | +import { Commit } from "./commit"; |
| 4 | +import { Config } from "./config"; |
| 5 | +import { DockerConfig } from "./docker_config"; |
3 | 6 | import { Emoji } from "./emoji"; |
4 | 7 | import { Hotfix } from "./hotfix"; |
5 | 8 | import { Images } from "./images"; |
6 | 9 | import { Issue } from "./issue"; |
7 | 10 | import { IssueTypes } from "./issue_types"; |
8 | 11 | import { Labels } from "./labels"; |
| 12 | +import { Locale } from "./locale"; |
9 | 13 | import { Projects } from "./projects"; |
10 | 14 | import { PullRequest } from "./pull_request"; |
11 | 15 | import { Release } from "./release"; |
12 | 16 | import { SingleAction } from "./single_action"; |
13 | 17 | import { SizeThresholds } from "./size_thresholds"; |
| 18 | +import { SupabaseConfig } from "./supabase_config"; |
14 | 19 | import { Tokens } from "./tokens"; |
| 20 | +import { Welcome } from "./welcome"; |
15 | 21 | import { Workflows } from "./workflows"; |
16 | | -import { Locale } from "./locale"; |
17 | | -import { SupabaseConfig } from "./supabase_config"; |
18 | | -import { DockerConfig } from "./docker_config"; |
19 | | -import { Config } from "./config"; |
20 | | -import { Commit } from "./commit"; |
21 | 22 | export declare class Execution { |
22 | 23 | debug: boolean; |
| 24 | + welcome: Welcome | undefined; |
23 | 25 | /** |
24 | 26 | * Every usage of this field should be checked. |
25 | 27 | * PRs with no issue ID in the head branch won't have it. |
@@ -70,6 +72,6 @@ export declare class Execution { |
70 | 72 | get cleanIssueBranches(): boolean; |
71 | 73 | get commit(): Commit; |
72 | 74 | get runnedByToken(): boolean; |
73 | | - constructor(debug: boolean, dockerConfig: DockerConfig, singleAction: SingleAction, commitPrefixBuilder: string, issue: Issue, pullRequest: PullRequest, emoji: Emoji, giphy: Images, tokens: Tokens, ai: Ai, labels: Labels, issueTypes: IssueTypes, locale: Locale, sizeThresholds: SizeThresholds, branches: Branches, release: Release, hotfix: Hotfix, workflows: Workflows, project: Projects, supabaseConfig: SupabaseConfig | undefined, inputs: any | undefined); |
| 75 | + constructor(debug: boolean, dockerConfig: DockerConfig, singleAction: SingleAction, commitPrefixBuilder: string, issue: Issue, pullRequest: PullRequest, emoji: Emoji, giphy: Images, tokens: Tokens, ai: Ai, labels: Labels, issueTypes: IssueTypes, locale: Locale, sizeThresholds: SizeThresholds, branches: Branches, release: Release, hotfix: Hotfix, workflows: Workflows, project: Projects, supabaseConfig: SupabaseConfig | undefined, welcome: Welcome | undefined, inputs: any | undefined); |
74 | 76 | setup: () => Promise<void>; |
75 | 77 | } |
0 commit comments