chirpie 1.0.8 → 1.0.9
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 +6 -66
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -466,82 +466,22 @@ accountsCommand.command("connect-telegram").description("Connect a Telegram bot
|
|
|
466
466
|
}
|
|
467
467
|
});
|
|
468
468
|
accountsCommand.command("connect-reddit").description("Connect a Reddit account via OAuth").action(async () => {
|
|
469
|
-
|
|
470
|
-
try {
|
|
471
|
-
const result = await client.connectRedditAccount();
|
|
472
|
-
info("Open this URL in your browser to connect your Reddit account:");
|
|
473
|
-
console.log(`
|
|
474
|
-
${result.authorization_url}
|
|
475
|
-
`);
|
|
476
|
-
} catch (err) {
|
|
477
|
-
error(err instanceof Error ? err.message : "Failed to start Reddit connection");
|
|
478
|
-
process.exit(1);
|
|
479
|
-
}
|
|
469
|
+
info("Reddit integration is coming soon. Check chirpie.ai for updates.");
|
|
480
470
|
});
|
|
481
471
|
accountsCommand.command("connect-pinterest").description("Connect a Pinterest account via OAuth").action(async () => {
|
|
482
|
-
|
|
483
|
-
try {
|
|
484
|
-
const result = await client.connectPinterestAccount();
|
|
485
|
-
info("Open this URL in your browser to connect your Pinterest account:");
|
|
486
|
-
console.log(`
|
|
487
|
-
${result.authorization_url}
|
|
488
|
-
`);
|
|
489
|
-
} catch (err) {
|
|
490
|
-
error(err instanceof Error ? err.message : "Failed to start Pinterest connection");
|
|
491
|
-
process.exit(1);
|
|
492
|
-
}
|
|
472
|
+
info("Pinterest integration is coming soon. Check chirpie.ai for updates.");
|
|
493
473
|
});
|
|
494
474
|
accountsCommand.command("connect-tiktok").description("Connect a TikTok account via OAuth").action(async () => {
|
|
495
|
-
|
|
496
|
-
try {
|
|
497
|
-
const result = await client.connectTikTokAccount();
|
|
498
|
-
info("Open this URL in your browser to connect your TikTok account:");
|
|
499
|
-
console.log(`
|
|
500
|
-
${result.authorization_url}
|
|
501
|
-
`);
|
|
502
|
-
} catch (err) {
|
|
503
|
-
error(err instanceof Error ? err.message : "Failed to start TikTok connection");
|
|
504
|
-
process.exit(1);
|
|
505
|
-
}
|
|
475
|
+
info("TikTok integration is coming soon. Check chirpie.ai for updates.");
|
|
506
476
|
});
|
|
507
477
|
accountsCommand.command("connect-youtube").description("Connect a YouTube channel via Google OAuth").action(async () => {
|
|
508
|
-
|
|
509
|
-
try {
|
|
510
|
-
const result = await client.connectYouTubeAccount();
|
|
511
|
-
info("Open this URL in your browser to connect your YouTube channel:");
|
|
512
|
-
console.log(`
|
|
513
|
-
${result.authorization_url}
|
|
514
|
-
`);
|
|
515
|
-
} catch (err) {
|
|
516
|
-
error(err instanceof Error ? err.message : "Failed to start YouTube connection");
|
|
517
|
-
process.exit(1);
|
|
518
|
-
}
|
|
478
|
+
info("YouTube integration is coming soon. Check chirpie.ai for updates.");
|
|
519
479
|
});
|
|
520
480
|
accountsCommand.command("connect-google-business").description("Connect a Google Business Profile via Google OAuth").action(async () => {
|
|
521
|
-
|
|
522
|
-
try {
|
|
523
|
-
const result = await client.connectGBPAccount();
|
|
524
|
-
info("Open this URL in your browser to connect your Google Business Profile:");
|
|
525
|
-
console.log(`
|
|
526
|
-
${result.authorization_url}
|
|
527
|
-
`);
|
|
528
|
-
} catch (err) {
|
|
529
|
-
error(err instanceof Error ? err.message : "Failed to start Google Business Profile connection");
|
|
530
|
-
process.exit(1);
|
|
531
|
-
}
|
|
481
|
+
info("Google Business Profile integration is coming soon. Check chirpie.ai for updates.");
|
|
532
482
|
});
|
|
533
483
|
accountsCommand.command("connect-snapchat").description("Connect a Snapchat account via OAuth").action(async () => {
|
|
534
|
-
|
|
535
|
-
try {
|
|
536
|
-
const result = await client.connectSnapchatAccount();
|
|
537
|
-
info("Open this URL in your browser to connect your Snapchat account:");
|
|
538
|
-
console.log(`
|
|
539
|
-
${result.authorization_url}
|
|
540
|
-
`);
|
|
541
|
-
} catch (err) {
|
|
542
|
-
error(err instanceof Error ? err.message : "Failed to start Snapchat connection");
|
|
543
|
-
process.exit(1);
|
|
544
|
-
}
|
|
484
|
+
info("Snapchat integration is coming soon. Check chirpie.ai for updates.");
|
|
545
485
|
});
|
|
546
486
|
|
|
547
487
|
// src/commands/analytics.ts
|