Skip to content

Commit 5888841

Browse files
committed
TASK: Updating RAML types, Postman and OAS definition
1 parent ea7ba66 commit 5888841

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

bruno/api/Project/Recurring-orders/Update actions/SetOrderSkipConfiguration.bru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:json {
1717
{
1818
"action" : "setOrderSkipConfiguration",
1919
"skipConfiguration" : {
20-
"type" : "counter",
20+
"type" : "Counter",
2121
"totalToSkip" : 3
2222
},
2323
"updatedExpiresAt" : "2025-10-15T15:00:00.000Z"

oas/api/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82472,7 +82472,7 @@ components:
8247282472
discriminator:
8247382473
propertyName: type
8247482474
mapping:
82475-
counter: '#/components/schemas/Counter'
82475+
Counter: '#/components/schemas/Counter'
8247682476
required:
8247782477
- type
8247882478
properties:
@@ -82483,7 +82483,7 @@ components:
8248382483
discriminator:
8248482484
propertyName: type
8248582485
mapping:
82486-
counter: '#/components/schemas/CounterDraft'
82486+
Counter: '#/components/schemas/CounterDraft'
8248782487
required:
8248882488
- type
8248982489
properties:

uml/api/SkipConfiguration.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ interface RecurringOrder [[RecurringOrder.svg]] {
4444
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
4545
createdBy: [[CreatedBy.svg CreatedBy]]
4646
}
47-
SkipConfiguration --> Counter #blue;text:blue : "type : counter"
47+
SkipConfiguration --> Counter #blue;text:blue : "type : Counter"
4848
SkipConfiguration --> RecurringOrder #green;text:green : "skipConfiguration"
4949
@enduml

uml/api/SkipConfigurationDraft.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ interface RecurringOrderSetOrderSkipConfigurationAction [[RecurringOrderSetOrder
2222
skipConfiguration: [[SkipConfigurationDraft.svg SkipConfigurationDraft]]
2323
updatedExpiresAt: DateTime
2424
}
25-
SkipConfigurationDraft --> CounterDraft #blue;text:blue : "type : counter"
25+
SkipConfigurationDraft --> CounterDraft #blue;text:blue : "type : Counter"
2626
SkipConfigurationDraft --> RecurringOrderSetOrderSkipConfigurationAction #green;text:green : "skipConfiguration"
2727
@enduml

0 commit comments

Comments
 (0)