neuro-cli 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +510 -0
- package/dist/advisor/advisor.d.ts +50 -0
- package/dist/advisor/advisor.js +178 -0
- package/dist/agents/base.d.ts +62 -0
- package/dist/agents/base.js +215 -0
- package/dist/agents/orchestrator.d.ts +46 -0
- package/dist/agents/orchestrator.js +192 -0
- package/dist/agents/team.d.ts +51 -0
- package/dist/agents/team.js +210 -0
- package/dist/api/models.d.ts +23 -0
- package/dist/api/models.js +514 -0
- package/dist/api/ollama.d.ts +153 -0
- package/dist/api/ollama.js +751 -0
- package/dist/api/openrouter.d.ts +55 -0
- package/dist/api/openrouter.js +223 -0
- package/dist/commands/commands.d.ts +43 -0
- package/dist/commands/commands.js +308 -0
- package/dist/config/config.d.ts +8 -0
- package/dist/config/config.js +311 -0
- package/dist/context/compaction.d.ts +54 -0
- package/dist/context/compaction.js +251 -0
- package/dist/context/custom-agents.d.ts +107 -0
- package/dist/context/custom-agents.js +397 -0
- package/dist/context/custom-tools.d.ts +120 -0
- package/dist/context/custom-tools.js +564 -0
- package/dist/context/git-checkpoint.d.ts +52 -0
- package/dist/context/git-checkpoint.js +240 -0
- package/dist/context/neuro-md.d.ts +48 -0
- package/dist/context/neuro-md.js +202 -0
- package/dist/context/neuroignore.d.ts +102 -0
- package/dist/context/neuroignore.js +441 -0
- package/dist/context/repo-map.d.ts +38 -0
- package/dist/context/repo-map.js +220 -0
- package/dist/context/skill-standard.d.ts +262 -0
- package/dist/context/skill-standard.js +1156 -0
- package/dist/context/skill-system.d.ts +75 -0
- package/dist/context/skill-system.js +578 -0
- package/dist/context/tree-sitter.d.ts +99 -0
- package/dist/context/tree-sitter.js +1956 -0
- package/dist/core/acp.d.ts +325 -0
- package/dist/core/acp.js +1498 -0
- package/dist/core/api-server.d.ts +143 -0
- package/dist/core/api-server.js +550 -0
- package/dist/core/approval.d.ts +81 -0
- package/dist/core/approval.js +432 -0
- package/dist/core/auto-compact.d.ts +127 -0
- package/dist/core/auto-compact.js +436 -0
- package/dist/core/auto-mode.d.ts +232 -0
- package/dist/core/auto-mode.js +831 -0
- package/dist/core/background-session.d.ts +166 -0
- package/dist/core/background-session.js +696 -0
- package/dist/core/cicd.d.ts +257 -0
- package/dist/core/cicd.js +1443 -0
- package/dist/core/cloud-sync.d.ts +156 -0
- package/dist/core/cloud-sync.js +582 -0
- package/dist/core/code-review.d.ts +132 -0
- package/dist/core/code-review.js +1191 -0
- package/dist/core/completion.d.ts +49 -0
- package/dist/core/completion.js +384 -0
- package/dist/core/context.d.ts +38 -0
- package/dist/core/context.js +144 -0
- package/dist/core/diff-preview.d.ts +35 -0
- package/dist/core/diff-preview.js +173 -0
- package/dist/core/doom-loop.d.ts +51 -0
- package/dist/core/doom-loop.js +179 -0
- package/dist/core/engine.d.ts +183 -0
- package/dist/core/engine.js +942 -0
- package/dist/core/extended-thinking.d.ts +103 -0
- package/dist/core/extended-thinking.js +269 -0
- package/dist/core/fallback.d.ts +54 -0
- package/dist/core/fallback.js +104 -0
- package/dist/core/git-worktree.d.ts +139 -0
- package/dist/core/git-worktree.js +614 -0
- package/dist/core/headless.d.ts +30 -0
- package/dist/core/headless.js +101 -0
- package/dist/core/i18n.d.ts +83 -0
- package/dist/core/i18n.js +739 -0
- package/dist/core/linting.d.ts +129 -0
- package/dist/core/linting.js +699 -0
- package/dist/core/model-router.d.ts +109 -0
- package/dist/core/model-router.js +581 -0
- package/dist/core/multi-model.d.ts +243 -0
- package/dist/core/multi-model.js +1099 -0
- package/dist/core/multi-session.d.ts +144 -0
- package/dist/core/multi-session.js +442 -0
- package/dist/core/multimodal.d.ts +125 -0
- package/dist/core/multimodal.js +286 -0
- package/dist/core/observability.d.ts +93 -0
- package/dist/core/observability.js +737 -0
- package/dist/core/os-sandbox.d.ts +122 -0
- package/dist/core/os-sandbox.js +1193 -0
- package/dist/core/outcome-grading.d.ts +228 -0
- package/dist/core/outcome-grading.js +1123 -0
- package/dist/core/output-styles.d.ts +57 -0
- package/dist/core/output-styles.js +382 -0
- package/dist/core/parallel-agents.d.ts +183 -0
- package/dist/core/parallel-agents.js +563 -0
- package/dist/core/plugin-bundle.d.ts +236 -0
- package/dist/core/plugin-bundle.js +887 -0
- package/dist/core/plugin-sdk.d.ts +139 -0
- package/dist/core/plugin-sdk.js +273 -0
- package/dist/core/prompt-cache.d.ts +163 -0
- package/dist/core/prompt-cache.js +599 -0
- package/dist/core/sandbox.d.ts +127 -0
- package/dist/core/sandbox.js +369 -0
- package/dist/core/scheduled-tasks.d.ts +151 -0
- package/dist/core/scheduled-tasks.js +502 -0
- package/dist/core/security-scanner.d.ts +160 -0
- package/dist/core/security-scanner.js +1494 -0
- package/dist/core/session.d.ts +83 -0
- package/dist/core/session.js +269 -0
- package/dist/core/shell-completion.d.ts +51 -0
- package/dist/core/shell-completion.js +674 -0
- package/dist/core/smart-monitor.d.ts +146 -0
- package/dist/core/smart-monitor.js +1199 -0
- package/dist/core/spec-driven.d.ts +233 -0
- package/dist/core/spec-driven.js +1485 -0
- package/dist/core/spending-warnings.d.ts +123 -0
- package/dist/core/spending-warnings.js +456 -0
- package/dist/core/sub-agent.d.ts +298 -0
- package/dist/core/sub-agent.js +1023 -0
- package/dist/core/telemetry.d.ts +157 -0
- package/dist/core/telemetry.js +412 -0
- package/dist/core/terminal-ux.d.ts +134 -0
- package/dist/core/terminal-ux.js +649 -0
- package/dist/core/testing.d.ts +146 -0
- package/dist/core/testing.js +1200 -0
- package/dist/core/types.d.ts +439 -0
- package/dist/core/types.js +6 -0
- package/dist/core/undo-redo.d.ts +112 -0
- package/dist/core/undo-redo.js +290 -0
- package/dist/core/updater.d.ts +159 -0
- package/dist/core/updater.js +608 -0
- package/dist/core/vim-mode.d.ts +151 -0
- package/dist/core/vim-mode.js +771 -0
- package/dist/core/voice.d.ts +137 -0
- package/dist/core/voice.js +538 -0
- package/dist/core/web-dashboard.d.ts +109 -0
- package/dist/core/web-dashboard.js +484 -0
- package/dist/hooks/hooks.d.ts +74 -0
- package/dist/hooks/hooks.js +160 -0
- package/dist/hooks/llm-evaluator.d.ts +165 -0
- package/dist/hooks/llm-evaluator.js +560 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1186 -0
- package/dist/lsp/lsp-manager.d.ts +63 -0
- package/dist/lsp/lsp-manager.js +351 -0
- package/dist/mcp/client.d.ts +133 -0
- package/dist/mcp/client.js +684 -0
- package/dist/mcp/mcp-apps.d.ts +70 -0
- package/dist/mcp/mcp-apps.js +1007 -0
- package/dist/tools/bash.d.ts +5 -0
- package/dist/tools/bash.js +195 -0
- package/dist/tools/browser.d.ts +92 -0
- package/dist/tools/browser.js +1570 -0
- package/dist/tools/extended.d.ts +6 -0
- package/dist/tools/extended.js +191 -0
- package/dist/tools/file.d.ts +10 -0
- package/dist/tools/file.js +382 -0
- package/dist/tools/github.d.ts +389 -0
- package/dist/tools/github.js +759 -0
- package/dist/tools/index.d.ts +9 -0
- package/dist/tools/index.js +40 -0
- package/dist/tools/memory.d.ts +6 -0
- package/dist/tools/memory.js +197 -0
- package/dist/tools/registry.d.ts +29 -0
- package/dist/tools/registry.js +64 -0
- package/dist/tools/web.d.ts +6 -0
- package/dist/tools/web.js +150 -0
- package/dist/ui/renderer.d.ts +97 -0
- package/dist/ui/renderer.js +279 -0
- package/dist/ui/theme.d.ts +27 -0
- package/dist/ui/theme.js +106 -0
- package/package.json +83 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
export interface CreatePROptions {
|
|
2
|
+
title: string;
|
|
3
|
+
body: string;
|
|
4
|
+
head: string;
|
|
5
|
+
base?: string;
|
|
6
|
+
draft?: boolean;
|
|
7
|
+
labels?: string[];
|
|
8
|
+
reviewers?: string[];
|
|
9
|
+
assignees?: string[];
|
|
10
|
+
}
|
|
11
|
+
export interface ListPROptions {
|
|
12
|
+
state?: 'open' | 'closed' | 'merged' | 'all';
|
|
13
|
+
limit?: number;
|
|
14
|
+
label?: string;
|
|
15
|
+
author?: string;
|
|
16
|
+
assignee?: string;
|
|
17
|
+
base?: string;
|
|
18
|
+
head?: string;
|
|
19
|
+
sort?: 'created' | 'updated' | 'popularity' | 'long-running';
|
|
20
|
+
direction?: 'asc' | 'desc';
|
|
21
|
+
}
|
|
22
|
+
export interface PRDetail {
|
|
23
|
+
number: number;
|
|
24
|
+
title: string;
|
|
25
|
+
body: string;
|
|
26
|
+
state: string;
|
|
27
|
+
html_url: string;
|
|
28
|
+
head: {
|
|
29
|
+
ref: string;
|
|
30
|
+
sha: string;
|
|
31
|
+
};
|
|
32
|
+
base: {
|
|
33
|
+
ref: string;
|
|
34
|
+
sha: string;
|
|
35
|
+
};
|
|
36
|
+
user: {
|
|
37
|
+
login: string;
|
|
38
|
+
};
|
|
39
|
+
created_at: string;
|
|
40
|
+
updated_at: string;
|
|
41
|
+
mergeable?: boolean | null;
|
|
42
|
+
additions: number;
|
|
43
|
+
deletions: number;
|
|
44
|
+
changed_files: number;
|
|
45
|
+
commits: number;
|
|
46
|
+
labels: Array<{
|
|
47
|
+
name: string;
|
|
48
|
+
color: string;
|
|
49
|
+
}>;
|
|
50
|
+
assignees: Array<{
|
|
51
|
+
login: string;
|
|
52
|
+
}>;
|
|
53
|
+
requested_reviewers: Array<{
|
|
54
|
+
login: string;
|
|
55
|
+
}>;
|
|
56
|
+
}
|
|
57
|
+
export interface PRReview {
|
|
58
|
+
number: number;
|
|
59
|
+
title: string;
|
|
60
|
+
body: string;
|
|
61
|
+
state: string;
|
|
62
|
+
url: string;
|
|
63
|
+
diff: string;
|
|
64
|
+
commits: number;
|
|
65
|
+
additions: number;
|
|
66
|
+
deletions: number;
|
|
67
|
+
changed_files: number;
|
|
68
|
+
files: Array<{
|
|
69
|
+
filename: string;
|
|
70
|
+
status: string;
|
|
71
|
+
additions: number;
|
|
72
|
+
deletions: number;
|
|
73
|
+
changes: number;
|
|
74
|
+
patch?: string;
|
|
75
|
+
}>;
|
|
76
|
+
reviews: Array<{
|
|
77
|
+
user: string;
|
|
78
|
+
state: string;
|
|
79
|
+
body: string;
|
|
80
|
+
}>;
|
|
81
|
+
comments: Array<{
|
|
82
|
+
user: string;
|
|
83
|
+
body: string;
|
|
84
|
+
path: string;
|
|
85
|
+
line: number;
|
|
86
|
+
}>;
|
|
87
|
+
}
|
|
88
|
+
export type MergeMethod = 'merge' | 'squash' | 'rebase';
|
|
89
|
+
export interface MergePRResult {
|
|
90
|
+
merged: boolean;
|
|
91
|
+
sha: string;
|
|
92
|
+
message: string;
|
|
93
|
+
method: MergeMethod;
|
|
94
|
+
}
|
|
95
|
+
export interface CreateIssueOptions {
|
|
96
|
+
title: string;
|
|
97
|
+
body: string;
|
|
98
|
+
labels?: string[];
|
|
99
|
+
assignees?: string[];
|
|
100
|
+
milestone?: number;
|
|
101
|
+
}
|
|
102
|
+
export interface ListIssuesOptions {
|
|
103
|
+
state?: 'open' | 'closed' | 'all';
|
|
104
|
+
limit?: number;
|
|
105
|
+
label?: string;
|
|
106
|
+
author?: string;
|
|
107
|
+
assignee?: string;
|
|
108
|
+
milestone?: string;
|
|
109
|
+
sort?: 'created' | 'updated' | 'comments';
|
|
110
|
+
direction?: 'asc' | 'desc';
|
|
111
|
+
}
|
|
112
|
+
export interface IssueDetail {
|
|
113
|
+
number: number;
|
|
114
|
+
title: string;
|
|
115
|
+
body: string;
|
|
116
|
+
state: string;
|
|
117
|
+
html_url: string;
|
|
118
|
+
user: {
|
|
119
|
+
login: string;
|
|
120
|
+
};
|
|
121
|
+
created_at: string;
|
|
122
|
+
updated_at: string;
|
|
123
|
+
labels: Array<{
|
|
124
|
+
name: string;
|
|
125
|
+
color: string;
|
|
126
|
+
}>;
|
|
127
|
+
assignees: Array<{
|
|
128
|
+
login: string;
|
|
129
|
+
}>;
|
|
130
|
+
comments: number;
|
|
131
|
+
milestone?: {
|
|
132
|
+
title: string;
|
|
133
|
+
number: number;
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
export interface BranchInfo {
|
|
137
|
+
name: string;
|
|
138
|
+
isHead: boolean;
|
|
139
|
+
isRemote: boolean;
|
|
140
|
+
ref: string;
|
|
141
|
+
}
|
|
142
|
+
export interface CreateReleaseOptions {
|
|
143
|
+
tagName: string;
|
|
144
|
+
name?: string;
|
|
145
|
+
body?: string;
|
|
146
|
+
target?: string;
|
|
147
|
+
draft?: boolean;
|
|
148
|
+
prerelease?: boolean;
|
|
149
|
+
notes?: string;
|
|
150
|
+
discussionCategory?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface ReleaseInfo {
|
|
153
|
+
id: number;
|
|
154
|
+
tagName: string;
|
|
155
|
+
name: string;
|
|
156
|
+
body: string;
|
|
157
|
+
draft: boolean;
|
|
158
|
+
prerelease: boolean;
|
|
159
|
+
html_url: string;
|
|
160
|
+
created_at: string;
|
|
161
|
+
published_at: string;
|
|
162
|
+
author: {
|
|
163
|
+
login: string;
|
|
164
|
+
};
|
|
165
|
+
assets: Array<{
|
|
166
|
+
name: string;
|
|
167
|
+
url: string;
|
|
168
|
+
size: number;
|
|
169
|
+
download_count: number;
|
|
170
|
+
}>;
|
|
171
|
+
}
|
|
172
|
+
export interface RepoInfo {
|
|
173
|
+
name: string;
|
|
174
|
+
full_name: string;
|
|
175
|
+
description: string;
|
|
176
|
+
html_url: string;
|
|
177
|
+
default_branch: string;
|
|
178
|
+
visibility: string;
|
|
179
|
+
language: string;
|
|
180
|
+
stars: number;
|
|
181
|
+
forks: number;
|
|
182
|
+
open_issues: number;
|
|
183
|
+
watchers: number;
|
|
184
|
+
created_at: string;
|
|
185
|
+
updated_at: string;
|
|
186
|
+
pushed_at: string;
|
|
187
|
+
license?: {
|
|
188
|
+
key: string;
|
|
189
|
+
name: string;
|
|
190
|
+
};
|
|
191
|
+
topics: string[];
|
|
192
|
+
}
|
|
193
|
+
export interface CodeSearchResult {
|
|
194
|
+
name: string;
|
|
195
|
+
path: string;
|
|
196
|
+
html_url: string;
|
|
197
|
+
repository: {
|
|
198
|
+
full_name: string;
|
|
199
|
+
};
|
|
200
|
+
text_matches: Array<{
|
|
201
|
+
fragment: string;
|
|
202
|
+
matches: Array<{
|
|
203
|
+
indices: number[];
|
|
204
|
+
text: string;
|
|
205
|
+
}>;
|
|
206
|
+
}>;
|
|
207
|
+
}
|
|
208
|
+
export interface WorkflowRun {
|
|
209
|
+
id: number;
|
|
210
|
+
name: string;
|
|
211
|
+
head_branch: string;
|
|
212
|
+
head_sha: string;
|
|
213
|
+
status: string;
|
|
214
|
+
conclusion: string | null;
|
|
215
|
+
html_url: string;
|
|
216
|
+
created_at: string;
|
|
217
|
+
updated_at: string;
|
|
218
|
+
run_number: number;
|
|
219
|
+
event: string;
|
|
220
|
+
workflow_id: number;
|
|
221
|
+
}
|
|
222
|
+
export interface WorkflowRunStatus {
|
|
223
|
+
id: number;
|
|
224
|
+
name: string;
|
|
225
|
+
status: string;
|
|
226
|
+
conclusion: string | null;
|
|
227
|
+
html_url: string;
|
|
228
|
+
jobs: Array<{
|
|
229
|
+
id: number;
|
|
230
|
+
name: string;
|
|
231
|
+
status: string;
|
|
232
|
+
conclusion: string | null;
|
|
233
|
+
started_at: string;
|
|
234
|
+
completed_at: string | null;
|
|
235
|
+
steps: Array<{
|
|
236
|
+
name: string;
|
|
237
|
+
status: string;
|
|
238
|
+
conclusion: string | null;
|
|
239
|
+
number: number;
|
|
240
|
+
}>;
|
|
241
|
+
}>;
|
|
242
|
+
}
|
|
243
|
+
export declare class GitHubIntegration {
|
|
244
|
+
private cwd;
|
|
245
|
+
private ghAvailable;
|
|
246
|
+
private repoFlag;
|
|
247
|
+
constructor(cwd?: string);
|
|
248
|
+
private ensureGh;
|
|
249
|
+
private gh;
|
|
250
|
+
private git;
|
|
251
|
+
/**
|
|
252
|
+
* Create a pull request
|
|
253
|
+
*/
|
|
254
|
+
createPR(options: CreatePROptions): {
|
|
255
|
+
success: boolean;
|
|
256
|
+
pr?: PRDetail;
|
|
257
|
+
error?: string;
|
|
258
|
+
};
|
|
259
|
+
/**
|
|
260
|
+
* List pull requests
|
|
261
|
+
*/
|
|
262
|
+
listPRs(options?: ListPROptions): {
|
|
263
|
+
success: boolean;
|
|
264
|
+
prs?: PRDetail[];
|
|
265
|
+
error?: string;
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Get PR details and diff
|
|
269
|
+
*/
|
|
270
|
+
reviewPR(prNumber: number): {
|
|
271
|
+
success: boolean;
|
|
272
|
+
review?: PRReview;
|
|
273
|
+
error?: string;
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* Merge a PR
|
|
277
|
+
*/
|
|
278
|
+
mergePR(prNumber: number, method?: MergeMethod): {
|
|
279
|
+
success: boolean;
|
|
280
|
+
result?: MergePRResult;
|
|
281
|
+
error?: string;
|
|
282
|
+
};
|
|
283
|
+
/**
|
|
284
|
+
* Create an issue
|
|
285
|
+
*/
|
|
286
|
+
createIssue(options: CreateIssueOptions): {
|
|
287
|
+
success: boolean;
|
|
288
|
+
issue?: IssueDetail;
|
|
289
|
+
error?: string;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* List issues
|
|
293
|
+
*/
|
|
294
|
+
listIssues(options?: ListIssuesOptions): {
|
|
295
|
+
success: boolean;
|
|
296
|
+
issues?: IssueDetail[];
|
|
297
|
+
error?: string;
|
|
298
|
+
};
|
|
299
|
+
/**
|
|
300
|
+
* Close an issue
|
|
301
|
+
*/
|
|
302
|
+
closeIssue(issueNumber: number): {
|
|
303
|
+
success: boolean;
|
|
304
|
+
error?: string;
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* Comment on an issue
|
|
308
|
+
*/
|
|
309
|
+
commentIssue(issueNumber: number, body: string): {
|
|
310
|
+
success: boolean;
|
|
311
|
+
error?: string;
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* Create a branch (falls back to git if gh is unavailable)
|
|
315
|
+
*/
|
|
316
|
+
createBranch(name: string, base?: string): {
|
|
317
|
+
success: boolean;
|
|
318
|
+
error?: string;
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* List branches
|
|
322
|
+
*/
|
|
323
|
+
listBranches(): {
|
|
324
|
+
success: boolean;
|
|
325
|
+
branches?: BranchInfo[];
|
|
326
|
+
error?: string;
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* Create a release
|
|
330
|
+
*/
|
|
331
|
+
createRelease(options: CreateReleaseOptions): {
|
|
332
|
+
success: boolean;
|
|
333
|
+
release?: ReleaseInfo;
|
|
334
|
+
error?: string;
|
|
335
|
+
};
|
|
336
|
+
/**
|
|
337
|
+
* List releases
|
|
338
|
+
*/
|
|
339
|
+
listReleases(): {
|
|
340
|
+
success: boolean;
|
|
341
|
+
releases?: ReleaseInfo[];
|
|
342
|
+
error?: string;
|
|
343
|
+
};
|
|
344
|
+
/**
|
|
345
|
+
* Get repository information
|
|
346
|
+
*/
|
|
347
|
+
getRepoInfo(): {
|
|
348
|
+
success: boolean;
|
|
349
|
+
repo?: RepoInfo;
|
|
350
|
+
error?: string;
|
|
351
|
+
};
|
|
352
|
+
/**
|
|
353
|
+
* Search code in repository
|
|
354
|
+
*/
|
|
355
|
+
searchCode(query: string): {
|
|
356
|
+
success: boolean;
|
|
357
|
+
results?: CodeSearchResult[];
|
|
358
|
+
error?: string;
|
|
359
|
+
};
|
|
360
|
+
/**
|
|
361
|
+
* List GitHub Actions workflow runs
|
|
362
|
+
*/
|
|
363
|
+
getWorkflowRuns(): {
|
|
364
|
+
success: boolean;
|
|
365
|
+
runs?: WorkflowRun[];
|
|
366
|
+
error?: string;
|
|
367
|
+
};
|
|
368
|
+
/**
|
|
369
|
+
* Trigger a workflow
|
|
370
|
+
*/
|
|
371
|
+
triggerWorkflow(workflowId: string, ref?: string): {
|
|
372
|
+
success: boolean;
|
|
373
|
+
error?: string;
|
|
374
|
+
};
|
|
375
|
+
/**
|
|
376
|
+
* Get workflow run status
|
|
377
|
+
*/
|
|
378
|
+
getWorkflowRunStatus(runId: number): {
|
|
379
|
+
success: boolean;
|
|
380
|
+
status?: WorkflowRunStatus;
|
|
381
|
+
error?: string;
|
|
382
|
+
};
|
|
383
|
+
private mapPRDetail;
|
|
384
|
+
private mapIssueDetail;
|
|
385
|
+
private mapReleaseInfo;
|
|
386
|
+
private extractRepoSlug;
|
|
387
|
+
private getRepoInfoFromGit;
|
|
388
|
+
}
|
|
389
|
+
//# sourceMappingURL=github.d.ts.map
|