UNPKG

@memberjunction/actions-bizapps-social

Version:

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

41 lines 1.29 kB
import { LinkedInBaseAction } from '../linkedin-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; import { SocialPost, SearchParams } from '../../../base/base-social.action'; /** * Action to search for historical posts on LinkedIn */ export declare class LinkedInSearchPostsAction extends LinkedInBaseAction { /** * Search for posts on LinkedIn with various filters */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Implementation of post search */ private searchPostsImplementation; /** * Get all shares for an author with pagination */ private getAllSharesForAuthor; /** * Check if a share matches the search criteria */ private matchesSearchCriteria; /** * Get analytics for a post during search */ private getPostAnalyticsForSearch; /** * Override base searchPosts method */ protected searchPosts(params: SearchParams): Promise<SocialPost[]>; /** * Define the parameters this action expects */ get Params(): ActionParam[]; /** * Get action description */ get Description(): string; } //# sourceMappingURL=search-posts.action.d.ts.map