You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 19, 2026. It is now read-only.
We need to move all asynchronous code (promises creation) from the client constructor to the separate init method that will be called by all class methods (once, at the first request). Cloud functions don't like asynchronous stuff in constructors.
To be discussed:
if this deferred initialization should be default, optional, or be enabled only within the cloud functions
if we want to make all our client methods async (possibly dropping callbacks)
We need to move all asynchronous code (promises creation) from the client constructor to the separate
initmethod that will be called by all class methods (once, at the first request). Cloud functions don't like asynchronous stuff in constructors.To be discussed:
async(possibly dropping callbacks)