UNPKG

@memberjunction/actions-bizapps-social

Version:

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

33 lines 1.04 kB
import { FacebookBaseAction } from '../facebook-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Retrieves detailed insights and analytics for a specific Facebook post. * Provides metrics like reach, impressions, engagement, and more. */ export declare class FacebookGetPostInsightsAction extends FacebookBaseAction { /** * Get action description */ get Description(): string; /** * Define the parameters for this action */ get Params(): ActionParam[]; /** * Execute the action */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Get default post metrics based on post type */ private getDefaultPostMetrics; /** * Get demographic insights for a post */ private getPostDemographics; /** * Process raw insights into a more usable format */ private processInsights; } //# sourceMappingURL=get-post-insights.action.d.ts.map