Daniel Lee
Daniel Lee
It appears that duckling cannot parse simple decimals beyond the tenth position, e.g. ``` => (p/parse :en$core "one point one two three" [:number]) ({:end 17, :start 14, :value {:type "value",...
We have a weird edge case where an authorization in form we don't recognize will completely skip the auth check. The fix here applies 2 changes: 1) We allow 'Bearer...
We rely on a now deprecated feature of typedoc for theming v1 reference docs. Unfortunately, the new version of typedoc completely remove support for theming the way it is done...
### [REQUIRED] Environment info **firebase-tools:** 11.4.0 **Platform:** macOS ### [REQUIRED] Test case ```js import * as functions from "firebase-functions"; export const v1scheduled = functions.pubsub.schedule("every 30 minutes").onRun(() => {}); ``` ###...
Updates various CLI tests to use the latest firebase functions and firebase admin sdk.
Before the refactor, function deploys used to include useful error message on failures. E.g. ``` i functions: creating Node.js 10 function XXX(us-central1)... i scheduler: ensuring necessary APIs are enabled... i...
Use `functions-framework` to bootstrap python function emulator support. With this change and given a simple python functions project that looks like: ``` $ tree . ├── functions.yaml ├── main.py └──...