UNPKG

@memberjunction/actions-bizapps-social

Version:

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

29 lines 942 B
import { FacebookBaseAction } from '../facebook-base.action.js'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Schedules a post to be published on a Facebook page at a future time. * Posts can be scheduled from 10 minutes to 6 months in the future. */ export declare class FacebookSchedulePostAction 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>; /** * Check if there's a scheduling conflict within 5 minutes */ private checkSchedulingConflict; /** * Get details of a scheduled post */ private getScheduledPost; } //# sourceMappingURL=schedule-post.action.d.ts.map