v0.8.0
Minor Changes
-
#36
df231a5Thanks @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:
searchmethod definition updated to match API improvements - LogScale: added
savedSearchmethod 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