beecork 1.3.9 → 1.3.10
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -135,7 +135,7 @@ channelCmd
|
|
|
135
135
|
});
|
|
136
136
|
program
|
|
137
137
|
.command('discord')
|
|
138
|
-
.description('
|
|
138
|
+
.description('Set up Discord — interactive setup for bot token and user ID')
|
|
139
139
|
.action(async () => {
|
|
140
140
|
const readline = await import('node:readline');
|
|
141
141
|
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
@@ -163,7 +163,7 @@ program
|
|
|
163
163
|
});
|
|
164
164
|
program
|
|
165
165
|
.command('whatsapp')
|
|
166
|
-
.description('
|
|
166
|
+
.description('Set up WhatsApp — enter phone number, then scan QR code to pair')
|
|
167
167
|
.action(async () => {
|
|
168
168
|
const readline = await import('node:readline');
|
|
169
169
|
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
@@ -196,7 +196,7 @@ program
|
|
|
196
196
|
});
|
|
197
197
|
program
|
|
198
198
|
.command('webhook')
|
|
199
|
-
.description('
|
|
199
|
+
.description('Set up Webhook — enable HTTP API for triggering Beecork from any service')
|
|
200
200
|
.action(async () => {
|
|
201
201
|
const readline = await import('node:readline');
|
|
202
202
|
const crypto = await import('node:crypto');
|