@rallycry/conveyor-agent 8.0.0 → 8.0.1
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/dist/{chunk-DXYEEQQ6.js → chunk-2L7ROQE6.js} +9 -5
- package/dist/chunk-2L7ROQE6.js.map +1 -0
- package/dist/{chunk-3X63JL6C.js → chunk-KTNGU2WU.js} +40 -2
- package/dist/chunk-KTNGU2WU.js.map +1 -0
- package/dist/cli.js +2 -2
- package/dist/index.js +2 -2
- package/dist/{tag-audit-handler-KH2EBOMI.js → tag-audit-handler-E6BZGVIG.js} +2 -2
- package/dist/{task-audit-handler-I3N2WZJ5.js → task-audit-handler-MXSNTY22.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-3X63JL6C.js.map +0 -1
- package/dist/chunk-DXYEEQQ6.js.map +0 -1
- /package/dist/{tag-audit-handler-KH2EBOMI.js.map → tag-audit-handler-E6BZGVIG.js.map} +0 -0
- /package/dist/{task-audit-handler-I3N2WZJ5.js.map → task-audit-handler-MXSNTY22.js.map} +0 -0
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
createHarness,
|
|
9
9
|
createServiceLogger,
|
|
10
10
|
defineTool
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-KTNGU2WU.js";
|
|
12
12
|
|
|
13
13
|
// src/setup/bootstrap.ts
|
|
14
14
|
var BOOTSTRAP_TIMEOUT_MS = 3e4;
|
|
@@ -1886,7 +1886,11 @@ var ListProjectTaskFilesRequestSchema = z2.object({
|
|
|
1886
1886
|
var GetProjectAttachmentRequestSchema = z2.object({
|
|
1887
1887
|
projectId: z2.string(),
|
|
1888
1888
|
taskId: z2.string(),
|
|
1889
|
-
fileId: z2.string()
|
|
1889
|
+
fileId: z2.string(),
|
|
1890
|
+
/** Byte offset into text content (paging large logs/JSON). Default 0. */
|
|
1891
|
+
offset: z2.number().int().nonnegative().optional(),
|
|
1892
|
+
/** Max bytes of text content to return from `offset`. Server default applies. */
|
|
1893
|
+
maxBytes: z2.number().int().positive().optional()
|
|
1890
1894
|
});
|
|
1891
1895
|
var CreateProjectPullRequestRequestSchema = z2.object({
|
|
1892
1896
|
projectId: z2.string(),
|
|
@@ -9590,7 +9594,7 @@ var ProjectRunner = class {
|
|
|
9590
9594
|
async handleAuditTags(request) {
|
|
9591
9595
|
this.connection.emitStatus("busy");
|
|
9592
9596
|
try {
|
|
9593
|
-
const { handleTagAudit } = await import("./tag-audit-handler-
|
|
9597
|
+
const { handleTagAudit } = await import("./tag-audit-handler-E6BZGVIG.js");
|
|
9594
9598
|
await handleTagAudit(request, this.connection, this.projectDir);
|
|
9595
9599
|
} catch (error) {
|
|
9596
9600
|
const msg = parseErrorMessage(error);
|
|
@@ -9613,7 +9617,7 @@ var ProjectRunner = class {
|
|
|
9613
9617
|
async handleAuditTasks(request) {
|
|
9614
9618
|
this.connection.emitStatus("busy");
|
|
9615
9619
|
try {
|
|
9616
|
-
const { handleTaskAudit } = await import("./task-audit-handler-
|
|
9620
|
+
const { handleTaskAudit } = await import("./task-audit-handler-MXSNTY22.js");
|
|
9617
9621
|
await handleTaskAudit(request, this.connection, this.projectDir);
|
|
9618
9622
|
} catch (error) {
|
|
9619
9623
|
const msg = parseErrorMessage(error);
|
|
@@ -9754,4 +9758,4 @@ export {
|
|
|
9754
9758
|
loadConveyorConfig,
|
|
9755
9759
|
unshallowRepo
|
|
9756
9760
|
};
|
|
9757
|
-
//# sourceMappingURL=chunk-
|
|
9761
|
+
//# sourceMappingURL=chunk-2L7ROQE6.js.map
|