Skip to content

Commit 2c57912

Browse files
efraespadaactions-user
authored andcommitted
gh-action: updated compiled files
1 parent 939befc commit 2c57912

File tree

18 files changed

+20551
-16922
lines changed

18 files changed

+20551
-16922
lines changed

bin/build/Release/cpufeatures.node

-720 Bytes
Binary file not shown.

bin/index.js

Lines changed: 20402 additions & 16909 deletions
Large diffs are not rendered by default.
-22.4 KB
Binary file not shown.

bin/out/isolated_vm.node

261 KB
Binary file not shown.

bin/src/data/model/ai.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ export declare class Ai {
1313
private aiPullRequestDescription;
1414
private aiMembersOnly;
1515
private aiIgnoreFiles;
16+
private aiIncludeReasoning;
1617
private providerRouting;
17-
constructor(openRouterApiKey: string, openRouterModel: string, aiPullRequestDescription: boolean, aiMembersOnly: boolean, aiIgnoreFiles: string[], providerRouting?: ProviderRoutingConfig);
18+
constructor(openRouterApiKey: string, openRouterModel: string, aiPullRequestDescription: boolean, aiMembersOnly: boolean, aiIgnoreFiles: string[], aiIncludeReasoning: boolean, providerRouting?: ProviderRoutingConfig);
1819
getOpenRouterApiKey(): string;
1920
getAiPullRequestDescription(): boolean;
2021
getAiMembersOnly(): boolean;
2122
getAiIgnoreFiles(): string[];
23+
getAiIncludeReasoning(): boolean;
2224
getOpenRouterModel(): string;
2325
getProviderRouting(): ProviderRoutingConfig;
2426
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export interface AiResponse {
2+
text_response: string;
3+
action: 'none' | 'analyze_files';
4+
related_files: string[];
5+
complete: boolean;
6+
}

bin/src/data/model/config.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Result } from "./result";
33
export declare class Config {
44
branchType: string;
55
releaseBranch: string | undefined;
6+
workingBranch: string | undefined;
67
parentBranch: string | undefined;
78
hotfixOriginBranch: string | undefined;
89
hotfixBranch: string | undefined;

bin/src/data/model/execution.d.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
import { Ai } from "./ai";
22
import { Branches } from "./branches";
3+
import { Commit } from "./commit";
4+
import { Config } from "./config";
5+
import { DockerConfig } from "./docker_config";
36
import { Emoji } from "./emoji";
47
import { Hotfix } from "./hotfix";
58
import { Images } from "./images";
69
import { Issue } from "./issue";
710
import { IssueTypes } from "./issue_types";
811
import { Labels } from "./labels";
12+
import { Locale } from "./locale";
913
import { Projects } from "./projects";
1014
import { PullRequest } from "./pull_request";
1115
import { Release } from "./release";
1216
import { SingleAction } from "./single_action";
1317
import { SizeThresholds } from "./size_thresholds";
18+
import { SupabaseConfig } from "./supabase_config";
1419
import { Tokens } from "./tokens";
20+
import { Welcome } from "./welcome";
1521
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";
2122
export declare class Execution {
2223
debug: boolean;
24+
welcome: Welcome | undefined;
2325
/**
2426
* Every usage of this field should be checked.
2527
* PRs with no issue ID in the head branch won't have it.
@@ -70,6 +72,6 @@ export declare class Execution {
7072
get cleanIssueBranches(): boolean;
7173
get commit(): Commit;
7274
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);
7476
setup: () => Promise<void>;
7577
}

bin/src/data/model/welcome.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export declare class Welcome {
2+
title: string;
3+
messages: string[];
4+
constructor(title: string, messages: string[]);
5+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Ai } from '../model/ai';
22
export declare class AiRepository {
33
ask: (ai: Ai, prompt: string) => Promise<string | undefined>;
4+
askJson: (ai: Ai, prompt: string) => Promise<any | undefined>;
45
}

0 commit comments

Comments
 (0)