@evident-ai/cli 3.1.1-dev.80e4dd9 → 3.1.1-dev.993411a
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/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4726,6 +4726,11 @@ async function run(options) {
|
|
|
4726
4726
|
{ command: "run" },
|
|
4727
4727
|
state.agentId
|
|
4728
4728
|
);
|
|
4729
|
+
const agentFlagNotice = "--agent is deprecated, use --runner instead; will be removed in a future release.";
|
|
4730
|
+
log2(state, agentFlagNotice, "warn");
|
|
4731
|
+
if (state.interactive && !state.json) {
|
|
4732
|
+
logActivity(state, { type: "info", level: "warn", message: agentFlagNotice });
|
|
4733
|
+
}
|
|
4729
4734
|
}
|
|
4730
4735
|
if (state.idleTimeout === null && (process.env.GITHUB_ACTIONS || process.env.CI)) {
|
|
4731
4736
|
log2(
|
|
@@ -4784,6 +4789,11 @@ async function run(options) {
|
|
|
4784
4789
|
{ command: "run" },
|
|
4785
4790
|
state.agentId
|
|
4786
4791
|
);
|
|
4792
|
+
const agentKeyNotice = "EVIDENT_AGENT_KEY is deprecated, use EVIDENT_RUNNER_KEY instead; will be removed in a future release.";
|
|
4793
|
+
log2(state, agentKeyNotice, "warn");
|
|
4794
|
+
if (state.interactive && !state.json) {
|
|
4795
|
+
logActivity(state, { type: "info", level: "warn", message: agentKeyNotice });
|
|
4796
|
+
}
|
|
4787
4797
|
}
|
|
4788
4798
|
if (!state.agentId) {
|
|
4789
4799
|
if (credentials2.authType === "agent_key") {
|