UNPKG

@memberjunction/actions-bizapps-social

Version:

Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer

32 lines 947 B
import { BufferBaseAction } from '../buffer-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Action to get sent (published) posts from Buffer */ export declare class BufferGetSentPostsAction extends BufferBaseAction { /** * Get sent posts from Buffer */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Group posts by published day */ private groupPostsByDay; /** * Calculate total engagements across all posts */ private calculateTotalEngagements; /** * Find the top performing post by engagements */ private findTopPerformingPost; /** * Define the parameters this action expects */ get Params(): ActionParam[]; /** * Metadata about this action */ get Description(): string; } //# sourceMappingURL=get-sent-posts.action.d.ts.map