| outline | deep |
|---|
Package:
devframe
Migrated from
DTK0006.
No dump match for "
{name}" with args:{args}
A static-mode client called an RPC function with arguments that don't match any pre-computed record, and no fallback was set on the dump.
Either widen the function's dump.inputs to cover the requested arguments, or provide dump.fallback so unmatched calls resolve to a default value instead of throwing.
defineRpcFunction({
name: 'my-plugin:get',
dump: {
inputs: [['known-id']],
fallback: null,
},
})packages/devframe/src/rpc/dumps.ts