/** * 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; /** * Sends an SMS message to a specific phone number * @public * @example * sendSMS("OpenFn", "phoneNumber", "Hello World!") * @function * @param {String} from - Name or number the message should be sent from. * @param {String} toNumber - Destination phone number. * @param {String} message - Text message * @returns {Operation} */ export function sendSMS(from: string, toNumber: string, message: string): Operation; export { field, fields, sourceValue, fn, fnIf, alterState, each, merge, dataPath, dataValue, lastReferenceValue } from "@openfn/language-common";