feat(Telegram Trigger Node): Add options to restrict to chat and user IDs (#14164)

This commit is contained in:
Jon
2025-03-26 13:38:58 +00:00
committed by GitHub
parent b9030d45de
commit f6517664dd
2 changed files with 52 additions and 2 deletions

View File

@@ -10,6 +10,12 @@ interface EventBody {
video?: {
file_id: string;
};
chat?: {
id: number;
};
from?: {
id: number;
};
}
export interface IEvent {