feat(bot): add reminder utility entry flow

This commit is contained in:
2026-03-11 22:23:24 +04:00
parent 523b5144d8
commit 6b8c2fa397
10 changed files with 1473 additions and 18 deletions

View File

@@ -29,6 +29,10 @@ function parsePendingActionType(raw: string): TelegramPendingActionType {
return raw
}
if (raw === 'reminder_utility_entry') {
return raw
}
if (raw === 'setup_topic_binding') {
return raw
}

View File

@@ -6,6 +6,7 @@ export const TELEGRAM_PENDING_ACTION_TYPES = [
'household_group_invite',
'payment_topic_clarification',
'payment_topic_confirmation',
'reminder_utility_entry',
'setup_topic_binding'
] as const