Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [10.11.0]
### Changed
- Added accountHolderType in contact account model to facilitate CoP in Contact Manager
- Added verificationBehaviour in contact account model to facilitate CoP in Caboose
- Updated bom version to 2026.07 to ingest the accountHolderType in contact account

## [10.10.0]
### Changed
- Updated stream-investment to be able to seed intraday prices to all the assets
Expand Down
19 changes: 19 additions & 0 deletions api/stream-legal-entity/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2455,6 +2455,20 @@ components:

ExternalAccountInformation:
properties:
verificationBehaviour:
type: string
description: >
How this account behaves when a beneficiary verification request resolves to it.
NORMAL performs the name and holder-type checks. The other values short-circuit the
checks and return a fixed reason code, so a seed set can demonstrate outcomes that
name matching alone cannot produce. Defaults to NORMAL when omitted.
default: NORMAL
enum:
- NORMAL
- OPTED_OUT
- NOT_SUPPORTED
- SWITCHED
example: NORMAL
externalId:
$ref: '#/components/schemas/ExternalContactId'
name:
Expand All @@ -2465,6 +2479,11 @@ components:
maxLength: 34
type: string
description: Name will be displayed if alias field is not filled
accountHolderType:
type: string
minLength: 1
maxLength: 10
description: Account holder type for the account.
accountType:
maxLength: 10
type: string
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<properties>
<java.version>25</java.version>
<ssdk.version>21.0.1</ssdk.version>
<backbase-bom.version>2026.03-LTS</backbase-bom.version>
<backbase-bom.version>2026.07</backbase-bom.version>
<boat-maven-plugin.version>0.18.1</boat-maven-plugin.version>
<backbase.portfolio.version>4.7.0</backbase.portfolio.version>
<org.jetbrainsannotations.version>26.1.0</org.jetbrainsannotations.version>
Expand Down
Loading