exod 1.0.0-alpha.2 → 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.
@@ -9,3 +9,15 @@ export class ProgressLine {
9
9
  export function createProgressLine(_options) {
10
10
  return new ProgressLine(_options);
11
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.2",
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",