telerivet@0.1.3
Functions
- execute(operations) ⇒
Operation
Execute a sequence of operations. Wraps
@openfn/language-common/execute
, and prepends initial state for telerivet.- send(sendData) ⇒
Operation
Send a message
execute(operations) ⇒ Operation
Execute a sequence of operations.
Wraps @openfn/language-common/execute
, and prepends initial state for telerivet.
Kind: global function
Param | Type | Description |
---|---|---|
operations | Operations | Operations to be performed. |
Example
execute(
create('foo'),
delete('bar')
)(state)
send(sendData) ⇒ Operation
Send a message
Kind: global function
Param | Type | Description |
---|---|---|
sendData | object | Payload data for the message |
Example
execute(
send(data)
)(state)