Skip to content

v0.8.0

Choose a tag to compare

@github-actions github-actions released this 13 Sep 15:13
54e1171

Minor Changes

  • #36 df231a5 Thanks @RuslanZavacky! - * To initialize CloudFunction abstraction, we can pass id + version (optional) or name + version (optional).
    Latter will be the default way forward - name + version:

    const cloudFunction = falcon.cloudFunction({
      name: 'my-function-name',
      version: 6,
    });
    • How we pass query and header to the cloud function is changing.
    const postResponse = await cloudFunction
      .path('/actions')
      .post(
        { action: 'ok' },
        { query: { param1: 'value1' }, header: { header1: 'value1' } },
      );
    • Collections: search method definition updated to match API improvements
    • LogScale: added savedSearch method to execute saved searches
    • App ID will be passed with initial data and will be automatically appended in places where it is required
    • Updated APIs endpoints for Collections and RTR