exod 1.0.0-alpha.5 → 1.0.0-alpha.6

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 formatSignalMessage(text) {
5
5
  export function formatSignalMarkdown(text) {
6
6
  return text;
7
7
  }
8
+ export function markdownToSignalTextChunks(text) {
9
+ return [text];
10
+ }
@@ -0,0 +1,10 @@
1
+ // Stub for Signal identity - not implemented
2
+ export function resolveSignalPeerId() {
3
+ return null;
4
+ }
5
+ export function resolveSignalRecipient() {
6
+ return null;
7
+ }
8
+ export function resolveSignalSender() {
9
+ return null;
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0-alpha.6",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",