/** * Execute a sequence of operations. * Wraps `@openfn/language-common/execute`, and prepends initial state for zoho. * @example * execute( * create('foo'), * delete('bar') * )(state) * @private * @param {Operations} operations - Operations to be performed. * @returns {Operation} */ export function execute(...operations: Operations): Operation; /** * To add a row data to a database table * @example * addRow( * 'testing_openfn', * 'Customers', * fields(field('Subject', dataValue('formId')), field('Status', 'Closed')) * ); * @function * @param {string} db - Database * @param {string} table - Database table * @param {object} rowData - row data to be added into the database * @returns {Operation} */ export function addRow(db: string, table: string, rowData: object): Operation; export { alterState, combine, dataPath, dataValue, each, field, fields, fn, fnIf, lastReferenceValue, log, merge, sourceValue } from "@openfn/language-common";