@poncho-ai/cli 0.25.2 → 0.25.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.25.2",
3
+ "version": "0.25.3",
4
4
  "description": "CLI for building and deploying AI agents",
5
5
  "repository": {
6
6
  "type": "git",
package/src/index.ts CHANGED
@@ -4034,7 +4034,7 @@ export const createRequestHandler = async (options?: {
4034
4034
  }
4035
4035
 
4036
4036
  try {
4037
- const summaries = await conversationStore.listSummaries();
4037
+ const summaries = await conversationStore.listSummaries(cronOwnerId);
4038
4038
  const targetSummaries = new Map<string, ConversationSummary>();
4039
4039
  for (const s of summaries) {
4040
4040
  if (s.channelMeta?.platform !== cronJob.channel) continue;
@@ -4457,7 +4457,7 @@ export const startDevServer = async (
4457
4457
  return;
4458
4458
  }
4459
4459
  try {
4460
- const summaries = await store.listSummaries();
4460
+ const summaries = await store.listSummaries("local-owner");
4461
4461
  const targetSummaries = new Map<string, ConversationSummary>();
4462
4462
  for (const s of summaries) {
4463
4463
  if (s.channelMeta?.platform !== config.channel) continue;