@amaster.ai/employee-runtime-connector 0.1.1-beta.37 → 0.1.1-beta.38
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.
|
@@ -6471,7 +6471,8 @@ var CAPABILITIES = [
|
|
|
6471
6471
|
"model_call_output_contract_v1",
|
|
6472
6472
|
"run_cancel",
|
|
6473
6473
|
"run_terminate",
|
|
6474
|
-
"logs_cost_workspace_status"
|
|
6474
|
+
"logs_cost_workspace_status",
|
|
6475
|
+
"source_acquisition_v1"
|
|
6475
6476
|
];
|
|
6476
6477
|
var RUNNER_KIND_CLOUD_MANAGED = "cloud_managed";
|
|
6477
6478
|
var RUNNER_KIND_DESKTOP_DELEGATED = "desktop_delegated";
|
|
@@ -9667,7 +9668,7 @@ var source_acquisition_compatibility_default = {
|
|
|
9667
9668
|
};
|
|
9668
9669
|
|
|
9669
9670
|
// src/amaster-runtime-daemon.mjs
|
|
9670
|
-
var CONNECTOR_VERSION = "0.1.1-beta.
|
|
9671
|
+
var CONNECTOR_VERSION = "0.1.1-beta.38";
|
|
9671
9672
|
var CONNECTOR_CONTRACT_VERSION = "2026-06-04.v1";
|
|
9672
9673
|
var SOURCE_ACQUISITION_CAPABILITY = source_acquisition_compatibility_default.profileVersion;
|
|
9673
9674
|
var SOURCE_ACQUISITION_PROFILE_VERSION = source_acquisition_compatibility_default.profileVersion;
|
package/dist/amaster-runtime.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { basename, dirname, join, resolve } from "node:path";
|
|
|
6
6
|
import { homedir, hostname } from "node:os";
|
|
7
7
|
import { fileURLToPath } from "node:url";
|
|
8
8
|
|
|
9
|
-
const CONNECTOR_VERSION = "0.1.1-beta.
|
|
9
|
+
const CONNECTOR_VERSION = "0.1.1-beta.38";
|
|
10
10
|
|
|
11
11
|
const CAPABILITIES = [
|
|
12
12
|
"remote_registration",
|
|
@@ -20,6 +20,7 @@ const CAPABILITIES = [
|
|
|
20
20
|
"run_cancel",
|
|
21
21
|
"run_terminate",
|
|
22
22
|
"logs_cost_workspace_status",
|
|
23
|
+
"source_acquisition_v1",
|
|
23
24
|
];
|
|
24
25
|
|
|
25
26
|
const CONFIG_KEY_MAP = new Map([
|