@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 === "
|
|
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" : "
|
|
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("
|
|
19615
|
+
registerCliCommand(parent, buildMentionExecuteCommand("add"), runtimeOptions);
|
|
19616
19616
|
}
|
|
19617
19617
|
|
|
19618
19618
|
// src/commands/mention/pending.ts
|
package/dist/core.js
CHANGED
|
@@ -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 === "
|
|
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" : "
|
|
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("
|
|
19342
|
+
registerCliCommand(parent, buildMentionExecuteCommand("add"), runtimeOptions);
|
|
19343
19343
|
}
|
|
19344
19344
|
var mentionPendingCommand = defineCommand(
|
|
19345
19345
|
{
|
package/dist/index.js
CHANGED