exod 1.0.0-alpha.10 → 1.0.0-alpha.12

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.
@@ -2,3 +2,6 @@
2
2
  export function probeLine() {
3
3
  return Promise.resolve({ available: false });
4
4
  }
5
+ export function probeLineBot() {
6
+ return Promise.resolve({ available: false });
7
+ }
@@ -5,6 +5,9 @@ export function table(_data, _options) {
5
5
  export function printTable(_data, _options) {
6
6
  // No-op
7
7
  }
8
+ export function renderTable(_data, _options) {
9
+ return "";
10
+ }
8
11
  export class Table {
9
12
  constructor(_options) { }
10
13
  push(..._args) { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.10",
3
+ "version": "1.0.0-alpha.12",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",