exod 1.0.0-alpha.12 → 1.0.0-alpha.13

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.
@@ -1,18 +1,27 @@
1
1
  // Stub for terminal theme - Terminal UI not needed
2
2
  export const theme = {
3
- primary: "",
4
- secondary: "",
5
- success: "",
6
- error: "",
7
- warning: "",
8
- info: "",
9
- muted: "",
10
- heading: "",
11
- accent: "",
12
- accentDim: "",
13
- accentBright: "",
3
+ primary: (t) => t,
4
+ secondary: (t) => t,
5
+ success: (t) => t,
6
+ error: (t) => t,
7
+ warning: (t) => t,
8
+ warn: (t) => t,
9
+ info: (t) => t,
10
+ muted: (t) => t,
11
+ heading: (t) => t,
12
+ accent: (t) => t,
13
+ accentDim: (t) => t,
14
+ accentBright: (t) => t,
15
+ command: (t) => t,
16
+ dim: (t) => t,
17
+ bold: (t) => t,
18
+ italic: (t) => t,
19
+ underline: (t) => t,
20
+ link: (t) => t,
21
+ code: (t) => t,
22
+ highlight: (t) => t,
14
23
  };
15
- export function colorize(text, ..._rest) {
24
+ export function colorize(_rich, _color, text) {
16
25
  return text;
17
26
  }
18
27
  export function isRich() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.12",
3
+ "version": "1.0.0-alpha.13",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",