-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*)!: add wire transfer process manager
Signed-off-by: Brooks Townsend <[email protected]>
- Loading branch information
1 parent
ca8ca40
commit e823ac9
Showing
42 changed files
with
1,124 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: CommitFunds | ||
summary: "A request to commit funds under hold to a wire transfer" | ||
version: 0.0.1 | ||
consumers: | ||
- 'Bank Account Aggregate' | ||
producers: | ||
- 'Wire Transfer Process Manager' | ||
tags: | ||
- label: 'command' | ||
externalLinks: [] | ||
badges: [] | ||
--- | ||
A request to commit the funds currently on hold for a given wire transfer. | ||
|
||
<Mermaid /> | ||
|
||
## Schema | ||
<SchemaViewer /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$id": "https://cosmonic.com/concordance/bankaccount/CommitFunds.json", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"title": "CommitFunds", | ||
"type": "object", | ||
"properties": { | ||
"accountNumber": { | ||
"type": "string", | ||
"description": "The account number" | ||
}, | ||
"customerId": { | ||
"type": "string", | ||
"description": "The ID of the customer performing the withdrawal" | ||
}, | ||
"wireTransferId": { | ||
"type": "string", | ||
"description": "A unique ID identifying the wire transfer transaction" | ||
} | ||
}, | ||
"required": ["accountNumber", "customerId", "wireTransferId"] | ||
} | ||
|
Oops, something went wrong.