@net-protocol/cli 0.1.36 → 0.1.37
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/chat/index.mjs +3 -3
- package/dist/chat/index.mjs.map +1 -1
- package/dist/cli/index.mjs +2 -2
- package/dist/cli/index.mjs.map +1 -1
- package/dist/feed/index.mjs +2 -2
- package/dist/feed/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/feed/index.mjs
CHANGED
|
@@ -481,7 +481,7 @@ async function executeFeedRead(feed, options) {
|
|
|
481
481
|
}
|
|
482
482
|
}
|
|
483
483
|
function registerFeedReadCommand(parent) {
|
|
484
|
-
parent.command("read <feed>").description("Read posts from a feed").option(
|
|
484
|
+
parent.command("read <feed>").description("Read posts from a feed (for group chats, use 'chat read' instead)").option(
|
|
485
485
|
"--limit <n>",
|
|
486
486
|
"Maximum number of posts to display",
|
|
487
487
|
(value) => parseInt(value, 10)
|
|
@@ -628,7 +628,7 @@ ${options.body}` : message;
|
|
|
628
628
|
}
|
|
629
629
|
}
|
|
630
630
|
function registerFeedPostCommand(parent) {
|
|
631
|
-
parent.command("post <feed> <message>").description("Post a message to a feed").option(
|
|
631
|
+
parent.command("post <feed> <message>").description("Post a message to a feed (for group chats, use 'chat send' instead)").option(
|
|
632
632
|
"--chain-id <id>",
|
|
633
633
|
"Chain ID (default: 8453 for Base)",
|
|
634
634
|
(value) => parseInt(value, 10)
|