exod 1.0.0-alpha.1 → 1.0.0-alpha.3

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.
@@ -0,0 +1,4 @@
1
+ // Stub for terminal note - Terminal UI not needed
2
+ export function note(_message, _title) {
3
+ // No-op
4
+ }
@@ -0,0 +1,23 @@
1
+ // Stub for terminal progress line - Terminal UI not needed
2
+ export class ProgressLine {
3
+ constructor(_options) {}
4
+ update(_text) {}
5
+ clear() {}
6
+ finish() {}
7
+ }
8
+
9
+ export function createProgressLine(_options) {
10
+ return new ProgressLine(_options);
11
+ }
12
+
13
+ export function clearActiveProgressLine() {
14
+ // No-op
15
+ }
16
+
17
+ export function setActiveProgressLine(_line) {
18
+ // No-op
19
+ }
20
+
21
+ export function getActiveProgressLine() {
22
+ return null;
23
+ }
@@ -0,0 +1,12 @@
1
+ // Stub for terminal prompt style - Terminal UI not needed
2
+ export function stylePromptHint(text) {
3
+ return text;
4
+ }
5
+
6
+ export function stylePromptMessage(text) {
7
+ return text;
8
+ }
9
+
10
+ export function stylePromptTitle(text) {
11
+ return text;
12
+ }
@@ -0,0 +1,11 @@
1
+ // Stub for terminal stream writer - Terminal UI not needed
2
+ export class StreamWriter {
3
+ constructor(_options) {}
4
+ write(_text) {}
5
+ flush() {}
6
+ clear() {}
7
+ }
8
+
9
+ export function createStreamWriter(_options) {
10
+ return new StreamWriter(_options);
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.3",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",