@memberjunction/actions-bizapps-social
Version:
Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer
40 lines • 1.1 kB
TypeScript
import { YouTubeBaseAction } from '../youtube-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
* Action to get comments from YouTube videos
*/
export declare class YouTubeGetCommentsAction extends YouTubeBaseAction {
/**
* Get comments from YouTube videos
*/
protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
/**
* Process raw comment threads into a flat array
*/
private processComments;
/**
* Calculate comment statistics
*/
private calculateCommentStats;
/**
* Basic sentiment analysis (simplified)
*/
private analyzeSentiment;
/**
* Get top commenters by frequency
*/
private getTopCommenters;
/**
* Get error code from error message
*/
private getErrorCode;
/**
* Define the parameters this action expects
*/
get Params(): ActionParam[];
/**
* Metadata about this action
*/
get Description(): string;
}
//# sourceMappingURL=get-comments.action.d.ts.map