feat: base bruno routes

generated from OpenAPI v3 spec
This commit is contained in:
2025-09-29 22:58:14 +01:00
parent 07fe77f05a
commit 26d5c96841
35 changed files with 396 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
meta {
name: Get a list of a customer's orders.
If accessed through the gateway - shows the current user's orders.
type: http
seq: 1
}
get {
url: {{baseUrl}}/v1/order/list
body: none
auth: inherit
}
params:query {
~customerId:
}

View File

@@ -0,0 +1,19 @@
meta {
name: OrderService_PlaceOrder
type: http
seq: 3
}
post {
url: {{baseUrl}}/v1/order/place
body: json
auth: inherit
}
params:query {
~customerId:
}
body:json {
{}
}

View File

@@ -0,0 +1,15 @@
meta {
name: OrderService_ViewOrder
type: http
seq: 2
}
get {
url: {{baseUrl}}/v1/order/orders/:orderId
body: none
auth: inherit
}
params:path {
orderId:
}

View File

@@ -0,0 +1,11 @@
meta {
name: View information about the service.
type: http
seq: 4
}
get {
url: {{baseUrl}}/v1/order/service
body: none
auth: inherit
}

View File

@@ -0,0 +1,7 @@
meta {
name: order
}
auth {
mode: inherit
}