mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Enable image downloading in channel_post event on Telegram (#2513)
This commit is contained in:
@@ -1,13 +1,17 @@
|
||||
export interface IEvent {
|
||||
message?: {
|
||||
photo?: [
|
||||
{
|
||||
file_id: string,
|
||||
},
|
||||
],
|
||||
document?: {
|
||||
file_id: string;
|
||||
|
||||
interface EventBody {
|
||||
photo?: [
|
||||
{
|
||||
file_id: string,
|
||||
},
|
||||
];
|
||||
document?: {
|
||||
file_id: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IEvent {
|
||||
message?: EventBody;
|
||||
channel_post?: EventBody;
|
||||
download_link?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user