chirpie 1.0.10 → 1.0.11
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 +12 -6
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -466,22 +466,28 @@ 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
|
-
|
|
469
|
+
error("Reddit integration is coming soon. Check chirpie.ai for updates.");
|
|
470
|
+
process.exit(1);
|
|
470
471
|
});
|
|
471
472
|
accountsCommand.command("connect-pinterest").description("Connect a Pinterest account via OAuth").action(async () => {
|
|
472
|
-
|
|
473
|
+
error("Pinterest integration is coming soon. Check chirpie.ai for updates.");
|
|
474
|
+
process.exit(1);
|
|
473
475
|
});
|
|
474
476
|
accountsCommand.command("connect-tiktok").description("Connect a TikTok account via OAuth").action(async () => {
|
|
475
|
-
|
|
477
|
+
error("TikTok integration is coming soon. Check chirpie.ai for updates.");
|
|
478
|
+
process.exit(1);
|
|
476
479
|
});
|
|
477
480
|
accountsCommand.command("connect-youtube").description("Connect a YouTube channel via Google OAuth").action(async () => {
|
|
478
|
-
|
|
481
|
+
error("YouTube integration is coming soon. Check chirpie.ai for updates.");
|
|
482
|
+
process.exit(1);
|
|
479
483
|
});
|
|
480
484
|
accountsCommand.command("connect-google-business").description("Connect a Google Business Profile via Google OAuth").action(async () => {
|
|
481
|
-
|
|
485
|
+
error("Google Business Profile integration is coming soon. Check chirpie.ai for updates.");
|
|
486
|
+
process.exit(1);
|
|
482
487
|
});
|
|
483
488
|
accountsCommand.command("connect-snapchat").description("Connect a Snapchat account via OAuth").action(async () => {
|
|
484
|
-
|
|
489
|
+
error("Snapchat integration is coming soon. Check chirpie.ai for updates.");
|
|
490
|
+
process.exit(1);
|
|
485
491
|
});
|
|
486
492
|
|
|
487
493
|
// src/commands/analytics.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chirpie",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Chirpie CLI — post to social media from the command line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@chirpie/sdk": "^1.0.
|
|
34
|
+
"@chirpie/sdk": "^1.0.9",
|
|
35
35
|
"commander": "^13"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|