From fe05972a9c0a9a2f9a657fa58c61fec32a33780f Mon Sep 17 00:00:00 2001 From: Aleksandr Soloshenko Date: Tue, 16 Jun 2026 09:47:27 +0700 Subject: [PATCH] [domain] add `app:started` webhook event --- src/domain.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/domain.ts b/src/domain.ts index 70be11f..a552ebf 100644 --- a/src/domain.ts +++ b/src/domain.ts @@ -115,6 +115,11 @@ export enum WebHookEventType { * Indicates that an SMS message has failed to be sent. */ SmsFailed = 'sms:failed', + + /** + * Indicates that the application has been started. + */ + AppStarted = 'app:started', } /**