/** * Execute a sequence of operations. * Wraps `language-common/execute`, and prepends initial state for openhim. * @example * execute( * create('foo'), * delete('bar') * )(state) * @private * @param {Operations} operations - Operations to be performed. * @returns {Operation} */ export function execute(...operations: Operations): Operation; /** * Create an encounter * @example * execute( * encounter(data) * )(state) * @function * @param {object} encounterData - Payload data for the encounter * @returns {Operation} */ export function encounter(encounterData: object): Operation; export { fn, field, fields, sourceValue, merge, dataPath, dataValue, lastReferenceValue } from "@openfn/language-common";