@botiverse/raft-daemon 0.62.0 → 0.63.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/cli/index.js CHANGED
@@ -18094,7 +18094,7 @@ ${opts.heldAction} Review the bounded context shown here, then choose one path.$
18094
18094
  // src/commands/mention/_format.ts
18095
18095
  function normalizeAction(action) {
18096
18096
  if (action === "notify" || action === "notify_only") return "notify";
18097
- if (action === "invite" || action === "add") return "invite";
18097
+ if (action === "add" || action === "invite") return "add";
18098
18098
  return null;
18099
18099
  }
18100
18100
  function formatActionCommands(action) {
@@ -19585,7 +19585,7 @@ function buildMentionExecuteCommand(action) {
19585
19585
  return defineCommand(
19586
19586
  {
19587
19587
  name: action,
19588
- description: `${action === "notify" ? "Notify" : "Invite"} unresolved mention targets by resolution id`,
19588
+ description: `${action === "notify" ? "Notify" : "Add"} unresolved mention targets by resolution id`,
19589
19589
  arguments: ["<resolutionIds...>"],
19590
19590
  options: [{ flags: "--json", description: "Emit machine-readable JSON" }]
19591
19591
  },
@@ -19612,7 +19612,7 @@ function buildMentionExecuteCommand(action) {
19612
19612
  }
19613
19613
  function registerMentionExecuteCommands(parent, runtimeOptions = {}) {
19614
19614
  registerCliCommand(parent, buildMentionExecuteCommand("notify"), runtimeOptions);
19615
- registerCliCommand(parent, buildMentionExecuteCommand("invite"), runtimeOptions);
19615
+ registerCliCommand(parent, buildMentionExecuteCommand("add"), runtimeOptions);
19616
19616
  }
19617
19617
 
19618
19618
  // src/commands/mention/pending.ts
package/dist/core.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  runBundledSlockCli,
12
12
  scanWorkspaceDirectories,
13
13
  subscribeDaemonLogs
14
- } from "./chunk-H3G23UPM.js";
14
+ } from "./chunk-RENPNQK3.js";
15
15
  export {
16
16
  DAEMON_CLI_USAGE,
17
17
  DaemonCore,
@@ -17863,7 +17863,7 @@ ${opts.heldAction} Review the bounded context shown here, then choose one path.$
17863
17863
  }
17864
17864
  function normalizeAction(action) {
17865
17865
  if (action === "notify" || action === "notify_only") return "notify";
17866
- if (action === "invite" || action === "add") return "invite";
17866
+ if (action === "add" || action === "invite") return "add";
17867
17867
  return null;
17868
17868
  }
17869
17869
  function formatActionCommands(action) {
@@ -19312,7 +19312,7 @@ function buildMentionExecuteCommand(action) {
19312
19312
  return defineCommand(
19313
19313
  {
19314
19314
  name: action,
19315
- description: `${action === "notify" ? "Notify" : "Invite"} unresolved mention targets by resolution id`,
19315
+ description: `${action === "notify" ? "Notify" : "Add"} unresolved mention targets by resolution id`,
19316
19316
  arguments: ["<resolutionIds...>"],
19317
19317
  options: [{ flags: "--json", description: "Emit machine-readable JSON" }]
19318
19318
  },
@@ -19339,7 +19339,7 @@ function buildMentionExecuteCommand(action) {
19339
19339
  }
19340
19340
  function registerMentionExecuteCommands(parent, runtimeOptions = {}) {
19341
19341
  registerCliCommand(parent, buildMentionExecuteCommand("notify"), runtimeOptions);
19342
- registerCliCommand(parent, buildMentionExecuteCommand("invite"), runtimeOptions);
19342
+ registerCliCommand(parent, buildMentionExecuteCommand("add"), runtimeOptions);
19343
19343
  }
19344
19344
  var mentionPendingCommand = defineCommand(
19345
19345
  {
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  DAEMON_CLI_USAGE,
4
4
  DaemonCore,
5
5
  parseDaemonCliArgs
6
- } from "./chunk-H3G23UPM.js";
6
+ } from "./chunk-RENPNQK3.js";
7
7
 
8
8
  // src/index.ts
9
9
  var parsedArgs = parseDaemonCliArgs(process.argv.slice(2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botiverse/raft-daemon",
3
- "version": "0.62.0",
3
+ "version": "0.63.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "raft-daemon": "dist/raft-daemon.js",