Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
p-zielinski committed Nov 21, 2023
1 parent af811fd commit ae585da
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions reference/OpenAPI.json
Original file line number Diff line number Diff line change
Expand Up @@ -36060,13 +36060,6 @@
"title": "Export Order Request Base",
"type": "object",
"properties": {
"exported_object": {
"type": "string",
"enum": [
"order"
],
"description": "The type of object to be exported."
},
"parameters": {
"type": "object",
"properties": {
Expand All @@ -36091,13 +36084,22 @@
}
},
"ExportOrderRequest": {
"title": "Export Order Request",
"title": "Export Orders",
"allOf": [
{
"$ref": "#/components/schemas/ExportOrderRequestBase"
},
{
"type": "object",
"properties": {
"exported_object": {
"type": "string",
"enum": [
"order"
],
"description": "The type of object to be exported."
}
},
"required": [
"exported_object"
]
Expand Down

0 comments on commit ae585da

Please sign in to comment.