maximo@0.3.3
Functions
- execute(operations) ⇒
Operation
Execute a sequence of operations. Wraps
@openfn/language-common/execute
, and prepends initial state for http.- fetch(params) ⇒
Operation
Make a GET request and POST it somewhere else
- update(params) ⇒
Operation
Make an update in Maximo 7.6 and beyond
- update75(params) ⇒
Operation
Make an upadte in Maximo 7.5
execute(operations) ⇒ Operation
Execute a sequence of operations.
Wraps @openfn/language-common/execute
, and prepends initial state for http.
Kind: global function
Param | Type | Description |
---|---|---|
operations | Operations | Operations to be performed. |
Example
execute(
create('foo'),
delete('bar')
)(state)
fetch(params) ⇒ Operation
Make a GET request and POST it somewhere else
Kind: global function
Param | Type | Description |
---|---|---|
params | object | data to make the fetch |
Example
fetch({
endpoint: 'maxrest/rest/os/mxinventory',
query: {
ITEMNUM: '01226',
_format: 'json',
},
postUrl: 'https://www.openfn.org/inbox/not-real',
});
update(params) ⇒ Operation
Make an update in Maximo 7.6 and beyond
Kind: global function
Param | Type | Description |
---|---|---|
params | object | data to make the update |
Example
execute(
update(params)
)(state)
update75(params) ⇒ Operation
Make an upadte in Maximo 7.5
Kind: global function
Param | Type | Description |
---|---|---|
params | object | data to make the update |
Example
execute(
update75(params)
)(state)