@constructor-io/constructorio-connect-cli
Version:
CLI tool to enable users to interface with the Constructor Connect Ecosystem
14 lines • 596 B
TypeScript
import { type TemplateExecutionSuccessResponse, type TemplateExecutionErrorResponse } from "../types";
export declare function sendTemplateExecuteRequest({ template, helpers, data, external, connectionId, templateType, showLogs, overrideDate, }: Args): Promise<TemplateExecutionSuccessResponse | TemplateExecutionErrorResponse>;
interface Args {
template: string;
helpers: string;
data: any;
external: any;
connectionId: string;
templateType: string;
showLogs?: boolean;
overrideDate?: Date;
}
export {};
//# sourceMappingURL=send-template-execute-request.d.ts.map