#Ah, the macOS app! That's a known issue

1 messages · Page 1 of 1 (latest)

knotty blaze
#

Running the build step on latest, getting build ts errors

> tsc -p tsconfig.json && tsx scripts/canvas-a2ui-copy.ts

src/agents/pi-embedded-runner.ts:489:27 - error TS2339: Property 'queueMessage' does not exist on type 'AgentSession'.

489             await session.queueMessage(text);
#

@reef gyro running pnpm build, node version 24.12.0 I get

> tsc -p tsconfig.json && tsx scripts/canvas-a2ui-copy.ts

src/agents/pi-embedded-runner.ts:489:27 - error TS2339: Property 'queueMessage' does not exist on type 'AgentSession'.

489             await session.queueMessage(text);
                              ~~~~~~~~~~~~

src/gateway/server.ts:860:26 - error TS18047: 'bridge' is possibly 'null'.

860       bridge ? (opts) => bridge.sendEvent(opts) : undefined,
                             ~~~~~~

src/gateway/server.ts:866:26 - error TS18047: 'bridge' is possibly 'null'.

866       bridge ? (opts) => bridge.sendEvent(opts) : undefined,
                             ~~~~~~

src/gateway/server.ts:872:22 - error TS18047: 'bridge' is possibly 'null'.

872       bridge ? () => bridge.listConnected() : undefined,
                         ~~~~~~

src/gateway/server.ts:873:26 - error TS18047: 'bridge' is possibly 'null'.

873       bridge ? (opts) => bridge.sendEvent(opts) : undefined,
                             ~~~~~~


Found 5 errors in 2 files.

Errors  Files
     1  src/agents/pi-embedded-runner.ts:489
     4  src/gateway/server.ts:860
 ELIFECYCLE  Command failed with exit code 1.