@rallycry/conveyor-agent 10.13.71 → 10.13.72

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.
@@ -2,21 +2,24 @@ import {
2
2
  TOMBSTONE_MESSAGE,
3
3
  isLegacyEntrypointLaunch
4
4
  } from "./chunk-R3FDJQL6.js";
5
+ import {
6
+ readAgentVersion
7
+ } from "./chunk-XORJ6SII.js";
5
8
  import {
6
9
  GitPrepJob,
7
10
  defaultGit,
8
11
  ensureDir,
9
- readAgentVersion,
10
12
  redactToken,
11
13
  reportBootMilestone
12
- } from "./chunk-QU53HND5.js";
14
+ } from "./chunk-WMMBAKPE.js";
13
15
  import {
14
16
  workbenchPort
15
17
  } from "./chunk-KMB3BU4S.js";
16
18
  import {
17
19
  startWorkbenchServer
18
- } from "./chunk-DOB2XE2I.js";
19
- import "./chunk-GJXAAPJ6.js";
20
+ } from "./chunk-UBDSLM44.js";
21
+ import "./chunk-3F4ZZKCA.js";
22
+ import "./chunk-W4LZ7R6Z.js";
20
23
  import {
21
24
  DEFAULT_WORKBENCH_PORT
22
25
  } from "./chunk-6Q6LQBWO.js";
@@ -98,6 +101,7 @@ function decodeJwtClaims(jwt) {
98
101
  function resolveModeEnv(claims) {
99
102
  if (claims.mode === "review") return { CONVEYOR_MODE: "code-review" };
100
103
  if (claims.mode === "pack") return { CONVEYOR_MODE: "pack" };
104
+ if (claims.mode === "serving") return { CONVEYOR_MODE: "serving" };
101
105
  if (claims.mode === "adhoc") return { CONVEYOR_MODE: "adhoc" };
102
106
  if (!claims.taskId && claims.projectId) return { CONVEYOR_MODE: "pm" };
103
107
  return {};