plazbot-cli
Version:
CLI para Plazbot SDK
34 lines (29 loc) • 569 B
text/typescript
export interface MessageCommandOptions {
dev?: boolean;
to?: string;
message?: string;
phone?: string;
template?: string;
}
export interface DirectMessageCommandOptions {
dev?: boolean;
to: string;
message: string;
}
export interface TemplateCommandOptions {
dev?: boolean;
phone: string;
template: string;
}
export interface WhatsappMessageParams {
message: string;
to: string;
}
export interface ConversationTemplateParams {
to: string;
template: string;
}
export interface WebhookParams {
number: string;
webhookUrl: string;
}