import { Suggestions } from "actions-on-google"; import { SUGGESTIONS } from "../../constants/suggestions"; import { SuggestionDFManager as SuggestionDFManagerShare} from '@everisinnovationbot/dialog_flow_managers'; export class SuggestionDFManager implements SuggestionDFManagerShare { constructor() { } public static generateSuggestions() { return (new Suggestions(SUGGESTIONS.LOGGED_SUGGESTIONS)); } public static generateCardSuggestions() { return (new Suggestions(SUGGESTIONS.CARD_SUGGESTIONS)); } public static generateAccountSuggestions() { return (new Suggestions(SUGGESTIONS.ACCOUNT_SUGGESTIONS)); } }