@leg3ndy/otto-bridge 0.7.6 → 0.8.0
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.
- package/dist/executors/native_macos.js +3 -0
- package/dist/types.js +1 -1
- package/package.json +1 -1
|
@@ -1201,10 +1201,13 @@ export class NativeMacOSJobExecutor {
|
|
|
1201
1201
|
if (!verification.ok) {
|
|
1202
1202
|
throw new Error(verification.reason || `Nao consegui confirmar o envio da mensagem para ${action.contact} no WhatsApp.`);
|
|
1203
1203
|
}
|
|
1204
|
+
const afterSend = await this.readWhatsAppVisibleConversation(action.contact, Math.max(12, beforeSend.messages.length + 4)).catch(() => null);
|
|
1204
1205
|
resultPayload.whatsapp = {
|
|
1205
1206
|
action: "send_message",
|
|
1206
1207
|
contact: action.contact,
|
|
1207
1208
|
text_preview: clipText(action.text, 180),
|
|
1209
|
+
messages: afterSend?.messages || [],
|
|
1210
|
+
summary: afterSend?.summary || "",
|
|
1208
1211
|
};
|
|
1209
1212
|
completionNotes.push(`Enviei no WhatsApp para ${action.contact}: ${clipText(action.text, 180)}`);
|
|
1210
1213
|
continue;
|
package/dist/types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const BRIDGE_CONFIG_VERSION = 1;
|
|
2
|
-
export const BRIDGE_VERSION = "0.
|
|
2
|
+
export const BRIDGE_VERSION = "0.8.0";
|
|
3
3
|
export const BRIDGE_PACKAGE_NAME = "@leg3ndy/otto-bridge";
|
|
4
4
|
export const DEFAULT_API_BASE_URL = "http://localhost:8000";
|
|
5
5
|
export const DEFAULT_POLL_INTERVAL_MS = 3000;
|