DF0025: Function Not in Dump Store
Message
Function "
{name}" not found in dump store
Cause
A static-mode client called an RPC function that was not baked into the build dump. This usually means the function was added after the dump was generated, or its name changed between build and runtime.
Fix
Re-run createBuild to regenerate the dump, or check that the call site uses the same name registered on the server.
Source
packages/devframe/src/rpc/dumps.ts— the static-mode dump resolver throwsDF0025when a client calls a function name that is not present in the baked dump store.