-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dynamic topic params out of order and non-bean methods added to …
…application.yml (#286) * feat: Added file names to generated test folders; only beans are included in the generated application.yml file; order of variables in topic are fixed * chore: remove commented out code * chore: linting
- Loading branch information
1 parent
610f701
commit db808d4
Showing
4 changed files
with
169 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
components: | ||
schemas: | ||
RideReceipt: | ||
$schema: 'http://json-schema.org/draft-07/schema#' | ||
type: object | ||
title: This schema is irrelevant | ||
$id: 'http://example.com/root.json' | ||
messages: | ||
Billing Receipt Created: | ||
payload: | ||
$ref: '#/components/schemas/RideReceipt' | ||
schemaFormat: application/vnd.aai.asyncapi+json;version=2.0.0 | ||
contentType: application/json | ||
channels: | ||
'acme/billing/receipts/{receipt_id}/created/{version}/regions/{region}/chargify/{ride_id}': | ||
subscribe: | ||
bindings: | ||
solace: | ||
bindingVersion: 0.1.0 | ||
destinations: | ||
- destinationType: topic | ||
message: | ||
$ref: '#/components/messages/Billing Receipt Created' | ||
parameters: | ||
version: | ||
schema: | ||
type: string | ||
receipt_id: | ||
schema: | ||
type: string | ||
ride_id: | ||
schema: | ||
type: string | ||
region: | ||
schema: | ||
type: string | ||
enum: | ||
- US | ||
- UK | ||
- CA | ||
- MX | ||
asyncapi: 2.0.0 | ||
info: | ||
title: ExpenseReportingIntegrationApplication | ||
version: 0.0.1 |