From e65b8e906790ddb85da6dcdbd4385fb403aef413 Mon Sep 17 00:00:00 2001 From: waleed Date: Thu, 2 Jul 2026 08:59:12 -0700 Subject: [PATCH] fix(brex): surface isPproEnabled in transfer block outputs Tool-level get_transfer/list_transfers already returned is_ppro_enabled (confirmed present on Brex's live Transfer schema), but the block's outputs map didn't declare it, so it was unreachable from the workflow UI. Adds it alongside the other transfer output fields. --- apps/sim/blocks/blocks/brex.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/sim/blocks/blocks/brex.ts b/apps/sim/blocks/blocks/brex.ts index ce7cd932563..6a5feefbb83 100644 --- a/apps/sim/blocks/blocks/brex.ts +++ b/apps/sim/blocks/blocks/brex.ts @@ -591,6 +591,10 @@ export const BrexBlock: BlockConfig = { createdAt: { type: 'string', description: 'Creation timestamp of the transfer' }, displayName: { type: 'string', description: 'Display name of the transfer' }, externalMemo: { type: 'string', description: 'External memo of the transfer' }, + isPproEnabled: { + type: 'boolean', + description: 'Whether Principal Protection (PPRO) is enabled for the transfer', + }, }, }