@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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +6 -0
- package/dist/chunk-X6E6KPIR.js +11130 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-DCK6IC6G.js +2112 -0
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/package.json
CHANGED
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;
|