/** * Execute a sequence of operations. * Wraps `language-common/execute`, and prepends initial state for http. * @example * execute( * create('foo'), * delete('bar') * )(state) * @private * @param {Operations} operations - Operations to be performed. * @returns {Operation} */ export function execute(...operations: Operations): Operation; export function createEntity(params: any): (state: any) => Promise; export function query(params: any): (state: any) => Promise; export function updateEntity(params: any): (state: any) => Promise; export function deleteEntity(params: any): (state: any) => Promise; export { field, fields, sourceValue, alterState, fn, fnIf, each, merge, dataPath, dataValue, lastReferenceValue } from "@openfn/language-common";