v0.9.0
Minor Changes
-
#45
3d15b8fThanks @simonihmig! - [BREAKING] Refactor namespaces for consistencyThis change moves the Cloud APIs, which were previously accessed directly from the
FalconAPIinstance, to their own.apinamespace.To migrate:
// before: falcon.incidents.getQueriesIncidentsV1(); // after: falcon.api.incidents.getQueriesIncidentsV1();
Furthermore, the
uploadFile()function has been moved into the existing.uinamespace.To migrate:
// before: falcon.uploadFile('remote-response'); // after: falcon.ui.uploadFile('remote-response');