This commit is contained in:
Hayden 2023-02-13 09:38:34 -09:00
parent 11773a4139
commit 59d90dfe56
No known key found for this signature in database
GPG key ID: 17CF79474E257545
3 changed files with 62 additions and 0 deletions

View file

@ -1303,6 +1303,30 @@ const docTemplate = `{
} }
} }
}, },
"/v1/reporting/bill-of-materials": {
"get": {
"security": [
{
"Bearer": []
}
],
"produces": [
"application/json"
],
"tags": [
"Reporting"
],
"summary": "Generates a Bill of Materials CSV",
"responses": {
"200": {
"description": "text/csv",
"schema": {
"type": "string"
}
}
}
}
},
"/v1/status": { "/v1/status": {
"get": { "get": {
"produces": [ "produces": [

View file

@ -1295,6 +1295,30 @@
} }
} }
}, },
"/v1/reporting/bill-of-materials": {
"get": {
"security": [
{
"Bearer": []
}
],
"produces": [
"application/json"
],
"tags": [
"Reporting"
],
"summary": "Generates a Bill of Materials CSV",
"responses": {
"200": {
"description": "text/csv",
"schema": {
"type": "string"
}
}
}
}
},
"/v1/status": { "/v1/status": {
"get": { "get": {
"produces": [ "produces": [

View file

@ -1408,6 +1408,20 @@ paths:
summary: Encode data into QRCode summary: Encode data into QRCode
tags: tags:
- Items - Items
/v1/reporting/bill-of-materials:
get:
produces:
- application/json
responses:
"200":
description: text/csv
schema:
type: string
security:
- Bearer: []
summary: Generates a Bill of Materials CSV
tags:
- Reporting
/v1/status: /v1/status:
get: get:
produces: produces: