/** * Execute a sequence of operations. * Wraps `@openfn/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; /** * Post a message * @public * @example * postMessage({ * "recipient": { * "id": "your-psid" * }, * "message": { * "text": "your-message" * } * }) * @function * @param {object} params - data to make the fetch * @returns {Operation} */ export function postMessage(params: object): Operation; export { alterState, combine, dataPath, dataValue, each, field, fields, fn, fnIf, lastReferenceValue, log, merge, sourceValue } from "@openfn/language-common";