/** * Execute a sequence of operations. * Wraps `language-common/execute`, and prepends initial state for cartodb. * @private * @param {Array} ...operations - Operations to be performed. * @returns {Operation} */ export function execute(...operations: any[]): Operation; /** * Execute an SQL statement * @example A basic radius search query * sql("SELECT * FROM table WHERE ST_DWithin(geom,ST_Point(-73,40),1000)"); * @function * @public * @param {object} sqlQuery - Payload data for the message * @returns {Operation} */ export function sql(sqlQuery: object): Operation; /** * Add rows to a table * @example Add rows to a table * addRow('users', { name: 'Alice', age: 25, city: 'New York' }) * @function * @public * @param {String} table - Table name * @param {object} rowData - data to add in the row * @returns {Operation} */ export function addRow(table: string, rowData: object): Operation; export { combine, dataPath, dataValue, each, field, fields, fn, fnIf, lastReferenceValue, log, merge, sourceValue } from "@openfn/language-common";