Function
kvGetMulti
(
c: RpcClient,
items: { namespace: string; key: string }[],
)
Source from the content-addressed store, hash-verified
| 11 | c.call<DynamicSummary[]>('agent_dynamic_summary_multi_last_query', { uuids, fields }) |
| 12 | |
| 13 | export const kvGetMulti = ( |
| 14 | c: RpcClient, |
| 15 | items: { namespace: string; key: string }[], |
| 16 | ) => c.call<{ namespace: string; key: string; value: unknown }[]>('kv_get_multi_value', { namespace_key: items }) |
| 17 | |
| 18 | export const taskQuery = ( |
| 19 | c: RpcClient, |
Tested by
no test coverage detected