pullfrog 0.0.203 → 0.0.205
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/README.md +5 -11
- package/dist/agents/postRun.d.ts +21 -2
- package/dist/agents/shared.d.ts +22 -0
- package/dist/cli.mjs +1152 -828
- package/dist/external.d.ts +7 -2
- package/dist/index.js +1101 -670
- package/dist/internal/index.d.ts +3 -0
- package/dist/internal.js +144 -49
- package/dist/mcp/comment.d.ts +10 -13
- package/dist/mcp/git.d.ts +2 -0
- package/dist/mcp/review.d.ts +2 -2
- package/dist/mcp/reviewComments.d.ts +29 -0
- package/dist/mcp/selectMode.d.ts +0 -6
- package/dist/mcp/server.d.ts +12 -3
- package/dist/utils/diffCoverage.d.ts +1 -0
- package/dist/utils/leapingComment.d.ts +11 -0
- package/dist/utils/patchWorkflowRunFields.d.ts +1 -1
- package/dist/utils/payload.d.ts +10 -2
- package/dist/utils/prSummary.d.ts +40 -0
- package/dist/utils/progressComment.d.ts +146 -0
- package/dist/utils/runContext.d.ts +16 -0
- package/dist/utils/runContextData.d.ts +2 -1
- package/package.json +1 -1
package/dist/external.d.ts
CHANGED
|
@@ -207,7 +207,12 @@ export interface WriteablePayload {
|
|
|
207
207
|
timeout?: string | undefined;
|
|
208
208
|
/** working directory for the agent */
|
|
209
209
|
cwd?: string | undefined;
|
|
210
|
-
/** pre-created progress comment ID for updating status */
|
|
211
|
-
|
|
210
|
+
/** pre-created progress comment (ID + type) for updating status */
|
|
211
|
+
progressComment?: {
|
|
212
|
+
id: string;
|
|
213
|
+
type: "issue" | "review";
|
|
214
|
+
} | undefined;
|
|
215
|
+
/** when true, seed the PR summary tmpfile + persist edits at run end */
|
|
216
|
+
generateSummary?: boolean | undefined;
|
|
212
217
|
}
|
|
213
218
|
export type Payload = Readonly<WriteablePayload>;
|