<!-- DO NOT DELETE validate_template=true template_path=.github/ISSUE_TEMPLATE/---report-a-bug.md --> ### Related issues <!-- Are there any related firebase-functions issues that you found on this topic before deciding to open a new issue? Please link them here--> ### [REQUIRED] Version info <!-- What versions of the following libraries are you using? Note that your issue may already be fixed in the latest versions. --> **node:** 20.18.0 <!-- Run node --version and print the output here--> **firebase-functions:** 6.0.1 **firebase-tools:** 13.25.0 <!-- Run firebase --version and print the output here--> **firebase-admin:** 12.6.0 ### [REQUIRED] Test case <!-- Provide a minimal, complete, and verifiable example (http://stackoverflow.com/help/mcve) --> ```js export const beforecreated = beforeUserCreated(async () => { return { photoUrl: "https://url1.test.com", photoURL: "https://url2.test.com", }; }); ``` ### [REQUIRED] Steps to reproduce Create above blocking function and check which url is returned for photo url. its photoUrl and not photoURL. ### [REQUIRED] Expected behavior As per typescript interface it must return photoURL and not photoUrl ### [REQUIRED] Actual behavior photoURL must be returned ### Were you able to successfully deploy your functions? yes