@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
15 lines (14 loc) • 826 B
TypeScript
import { BotonicContext, BotServerMessage } from '@botonic/core';
import { FlowBuilderApi } from '../../api';
import { ContentFieldsBase } from '../content-fields-base';
import { HtWhatsappButtonListNode } from '../hubtype-fields';
import { FlowWhatsappButtonListSection } from './flow-whatsapp-button-list-section';
export declare class FlowWhatsappButtonList extends ContentFieldsBase {
text: string;
listButtonText: string;
sections: FlowWhatsappButtonListSection[];
static fromHubtypeCMS(component: HtWhatsappButtonListNode, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonList;
trackFlow(botonicContext: BotonicContext): Promise<void>;
processContent(botonicContext: BotonicContext): Promise<import("..").FlowContent>;
toBotonic(botonicContext: BotonicContext): BotServerMessage;
}