Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORS-1893 - add cards reference to JobProfileUser #386

Merged
merged 1 commit into from
Nov 13, 2023
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [3.68.0](https://github.com/Backbase/stream-services/compare/3.67.0...3.68.0)
### Changed
- Add CardsReference to legal-entity openapi spec

## [3.67.0](https://github.com/Backbase/stream-services/compare/3.66.0...3.67.0)
### Changed
- Fix transaction-cursor k8 deployment failure issue: `org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.backbase.stream.compositions.transaction.cursor.core.mapper.TransactionCursorMapper' available`
Expand Down
17 changes: 16 additions & 1 deletion api/stream-legal-entity/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.1
info:
title: Ingest Legal Entity API
description: Ingestion Saga for Legal Entities and their products
version: 2.3.1
version: 2.3.2
x-logo:
url: "http://www.backbase.com/wp-content/uploads/2017/04/backbase-logo-png.png"
backgroundColor: "#FFFFFF"
Expand Down Expand Up @@ -1047,6 +1047,19 @@ components:
required:
- internalId
- externalId
CardsReference:
title: Cards (debit and credit) reference
type: object
properties:
debitCardNames:
type: array
items:
type: string
creditCardNames:
type: array
items:
type: string

LegalEntity:
title: Legal Entity
description: |
Expand Down Expand Up @@ -1130,6 +1143,8 @@ components:
type: array
items:
type: string
cards:
$ref: '#/components/schemas/CardsReference'
businessFunctionGroups:
type: array
description: Business Function Groups
Expand Down
Loading