UNPKG

@constructor-io/constructorio-connect-cli

Version:

CLI tool to enable users to interface with the Constructor Connect Ecosystem

13 lines 557 B
import { type TemplateExecutionSuccessResponse, type TemplateExecutionErrorResponse } from "../types"; export declare function sendTemplateExecuteRequest({ template, helpers, data, external, connectionId, templateType, showLogs, }: Args): Promise<TemplateExecutionSuccessResponse | TemplateExecutionErrorResponse>; interface Args { template: string; helpers: string; data: any; external: any; connectionId: string; templateType: string; showLogs?: boolean; } export {}; //# sourceMappingURL=send-template-execute-request.d.ts.map