diff --git a/http-action/README.md b/http-action/README.md index 292f553..f906a86 100644 --- a/http-action/README.md +++ b/http-action/README.md @@ -20,7 +20,7 @@ | **Author** | Yudhi Armyndharis | | **License** | MIT | | **Type** | `extension` | -| **Requires OpenWA** | ≥ 0.8.7 (tested null) | +| **Requires OpenWA** | ≥ 0.8.0 (tested null) | | **Keywords** | api, rest, automation, connector, whatsapp, openwa | | **Repository** | [OpenWA-plugins/http-action](https://github.com/rmyndharis/OpenWA-plugins/tree/main/http-action) | diff --git a/http-action/manifest.json b/http-action/manifest.json index 016febe..3c4c60e 100644 --- a/http-action/manifest.json +++ b/http-action/manifest.json @@ -11,7 +11,7 @@ "repository": "https://github.com/rmyndharis/OpenWA-plugins", "keywords": ["api", "rest", "automation", "connector", "whatsapp", "openwa"], "status": "beta", - "minOpenWAVersion": "0.8.7", + "minOpenWAVersion": "0.8.0", "sdkVersion": "1", "provides": ["api-automation", "rest-connector", "dynamic-reply"], "permissions": ["net:fetch", "conversation:send"], diff --git a/plugins.json b/plugins.json index 96aa969..cd9c610 100644 --- a/plugins.json +++ b/plugins.json @@ -1285,7 +1285,7 @@ "whatsapp", "openwa" ], - "minOpenWAVersion": "0.8.7", + "minOpenWAVersion": "0.8.0", "testedOpenWAVersion": null, "releasedAt": "2026-07-11", "repoPath": "http-action", diff --git a/types/openwa.d.ts b/types/openwa.d.ts index 48b9ecd..516c70b 100644 --- a/types/openwa.d.ts +++ b/types/openwa.d.ts @@ -11,8 +11,9 @@ export type HookEvent = | 'session:created' | 'session:starting' | 'session:ready' | 'session:qr' | 'session:disconnected' | 'session:error' | 'session:deleted' - | 'message:received' | 'message:sending' | 'message:sent' | 'message:failed' | 'message:ack' - | 'webhook:before' | 'webhook:queued' | 'webhook:delivered' | 'webhook:after' | 'webhook:error'; + | 'message:received' | 'message:sending' | 'message:sent' | 'message:failed' | 'message:ack' | 'message:persisted' + | 'webhook:before' | 'webhook:queued' | 'webhook:delivered' | 'webhook:after' | 'webhook:error' + | 'ingress:error'; export interface HookContext { event: HookEvent;