Skip to content

v0.9.0

Choose a tag to compare

@github-actions github-actions released this 19 Sep 11:53
9e96eaa

Minor Changes

  • #45 3d15b8f Thanks @simonihmig! - [BREAKING] Refactor namespaces for consistency

    This change moves the Cloud APIs, which were previously accessed directly from the FalconAPI instance, to their own .api namespace.

    To migrate:

    // before:
    falcon.incidents.getQueriesIncidentsV1();
    
    // after:
    falcon.api.incidents.getQueriesIncidentsV1();

    Furthermore, the uploadFile() function has been moved into the existing .ui namespace.

    To migrate:

    // before:
    falcon.uploadFile('remote-response');
    
    // after:
    falcon.ui.uploadFile('remote-response');