@amaster.ai/employee-runtime-connector 0.1.0-beta.48 → 0.1.0-beta.49
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.
|
@@ -1792,6 +1792,7 @@ function createManagedPiMcpProfileApi(options = {}) {
|
|
|
1792
1792
|
const MANAGED_BROWSER_USE_PLUGIN = "browser-use";
|
|
1793
1793
|
const MANAGED_TELEMETRY_PACKAGE = "@amaster.ai/pi-telemetry";
|
|
1794
1794
|
const MANAGED_TELEMETRY_ENV_NAMES = [
|
|
1795
|
+
"PI_TELEMETRY_TASK_RUN_ID",
|
|
1795
1796
|
"PI_TELEMETRY_SERVICE_NAME",
|
|
1796
1797
|
"PI_TELEMETRY_SERVICE_VERSION",
|
|
1797
1798
|
"PI_TELEMETRY_INCLUDE_PAYLOADS",
|
|
@@ -8144,7 +8145,7 @@ function createPublicNetworkScope(options = {}) {
|
|
|
8144
8145
|
}
|
|
8145
8146
|
|
|
8146
8147
|
// src/amaster-runtime-daemon.mjs
|
|
8147
|
-
var CONNECTOR_VERSION = "0.1.0-beta.
|
|
8148
|
+
var CONNECTOR_VERSION = "0.1.0-beta.49";
|
|
8148
8149
|
var CONNECTOR_CONTRACT_VERSION = "2026-06-04.v1";
|
|
8149
8150
|
var MAX_CHECKPOINT_BYTES = 20 * 1024 * 1024;
|
|
8150
8151
|
var CHECKPOINT_TTL_MS = 24 * 60 * 60 * 1e3;
|
|
@@ -9499,6 +9500,7 @@ function buildExecutorEnv(config, command, workspace) {
|
|
|
9499
9500
|
AMASTER_RUNTIME_EXECUTION_WORKDIR: cwd,
|
|
9500
9501
|
AMASTER_RUNTIME_SOURCE_WORKSPACE: workspaceContext.sourceWorkspacePath ?? cwd,
|
|
9501
9502
|
...workspaceContext.executorHome ? { AMASTER_RUNTIME_EXECUTOR_HOME: workspaceContext.executorHome } : {},
|
|
9503
|
+
...commandUsesPiExecutor(command) ? { PI_TELEMETRY_TASK_RUN_ID: runId } : {},
|
|
9502
9504
|
PAPERCLIP_RUN_ID: readString(runtimeAuth.runId) ?? runId,
|
|
9503
9505
|
PAPERCLIP_TASK_ID: readString(runtimeAuth.issueId) ?? issueId,
|
|
9504
9506
|
PAPERCLIP_AGENT_ID: readString(runtimeAuth.agentId) ?? readString(asRecord(command.payload).agentId) ?? "",
|
package/dist/amaster-runtime.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { dirname, join, resolve } from "node:path";
|
|
|
5
5
|
import { homedir, hostname } from "node:os";
|
|
6
6
|
import { fileURLToPath } from "node:url";
|
|
7
7
|
|
|
8
|
-
const CONNECTOR_VERSION = "0.1.0-beta.
|
|
8
|
+
const CONNECTOR_VERSION = "0.1.0-beta.49";
|
|
9
9
|
|
|
10
10
|
const CAPABILITIES = [
|
|
11
11
|
"remote_registration",
|