Skip to content

Commit e65b8e9

Browse files
committed
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.
1 parent 5553c44 commit e65b8e9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

apps/sim/blocks/blocks/brex.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,10 @@ export const BrexBlock: BlockConfig<BrexResponse> = {
591591
createdAt: { type: 'string', description: 'Creation timestamp of the transfer' },
592592
displayName: { type: 'string', description: 'Display name of the transfer' },
593593
externalMemo: { type: 'string', description: 'External memo of the transfer' },
594+
isPproEnabled: {
595+
type: 'boolean',
596+
description: 'Whether Principal Protection (PPRO) is enabled for the transfer',
597+
},
594598
},
595599
}
596600

0 commit comments

Comments
 (0)