UNPKG

@memberjunction/actions-bizapps-social

Version:

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

36 lines 1.03 kB
import { HootSuiteBaseAction } from '../hootsuite-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Action to retrieve social profiles connected to HootSuite account */ export declare class HootSuiteGetSocialProfilesAction extends HootSuiteBaseAction { /** * Get social profiles from HootSuite */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Get additional details for a profile */ private getProfileDetails; /** * Map social network ID to readable name */ private mapSocialNetworkId; /** * Group profiles by network */ private groupByNetwork; /** * Group profiles by type */ private groupByType; /** * Define the parameters this action expects */ get Params(): ActionParam[]; /** * Get action description */ get Description(): string; } //# sourceMappingURL=get-social-profiles.action.d.ts.map