From 5d585d10bf9b7c7c3132e29055c78f3d5c90fa4d Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Thu, 6 Aug 2026 01:38:05 -0600 Subject: [PATCH] docs(supervise): drop stale PiSeam reference from the bridge seam comment The bespoke pi executor and its PiSeam type were removed in fee88987; the activityWindow doc comment still cited PiSeam as the source of the default. The default stands on its own. Regenerates docs/api to match. --- docs/api/runtime.md | 2 +- src/runtime/supervise/runtime.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/runtime.md b/docs/api/runtime.md index afde9792..60276172 100644 --- a/docs/api/runtime.md +++ b/docs/api/runtime.md @@ -11893,7 +11893,7 @@ Transport reconnects allowed after the first POST. Default 3; set 0 to disable. > `optional` **activityWindow?**: `number` -Newest-last activity window `progress()` reports. Default 12 (matches `PiSeam`). +Newest-last activity window `progress()` reports. Default 12. *** diff --git a/src/runtime/supervise/runtime.ts b/src/runtime/supervise/runtime.ts index b60de7e3..e66c5a13 100644 --- a/src/runtime/supervise/runtime.ts +++ b/src/runtime/supervise/runtime.ts @@ -334,7 +334,7 @@ export interface BridgeSeam { sessionId?: string /** Transport reconnects allowed after the first POST. Default 3; set 0 to disable. */ maxReconnects?: number - /** Newest-last activity window `progress()` reports. Default 12 (matches `PiSeam`). */ + /** Newest-last activity window `progress()` reports. Default 12. */ activityWindow?: number }