exod 1.0.0-alpha.6 → 1.0.0-alpha.8

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.
@@ -5,3 +5,6 @@ export function resolveIMessageTargets() {
5
5
  export function normalizeIMessageHandle(handle) {
6
6
  return handle;
7
7
  }
8
+ export function parseIMessageTarget(target) {
9
+ return null;
10
+ }
@@ -0,0 +1,5 @@
1
+ // Stub for TUI - Terminal UI not needed for Telegram bot
2
+ export async function runTui(_options) {
3
+ console.log("[exod] TUI mode not available in this build");
4
+ process.exit(0);
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.6",
3
+ "version": "1.0.0-alpha.8",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",