More fields and some bugfixes

This commit is contained in:
Nico Kroll 2026-01-30 07:45:25 +01:00
parent dc1751b852
commit 6eda09efbe
1 changed files with 66 additions and 31 deletions

View File

@ -1,7 +1,7 @@
openapi: 3.0.0 openapi: 3.0.0
info: info:
title: "TyrePro-API, Shop" title: "TyrePro-API, Shop"
version: "Version 16" version: "Version 18"
servers: servers:
- url: "https://musterreifen.com/api/shop" - url: "https://musterreifen.com/api/shop"
description: "Development server, customers domain" description: "Development server, customers domain"
@ -500,9 +500,21 @@ paths:
- "HoleCircle2" - "HoleCircle2"
- "Offset2" - "Offset2"
- "HubBoreHole2" - "HubBoreHole2"
- name: "MaximumNumberOfOptions"
in: "query"
required: false
schema:
type: "integer"
default: 1000
example: 1000
responses: responses:
200: 200:
description: "successful operation" description: "successful operation"
headers:
Developer-Hint:
schema:
type: "string"
description: "To prevent data intense calls, we may manipulate your request. If so, you get a hint here, what exactly we've done."
content: content:
application/json: application/json:
schema: schema:
@ -666,11 +678,6 @@ paths:
responses: responses:
200: 200:
description: "successful operation" description: "successful operation"
headers:
Guid-Shop-Article-Config:
schema:
type: "string"
description: "The ShopArticleConfig which was used to build the response. With this unification the configuration is maybe not precise, but you can show the results in a unified form (columns). Currently it's a response header. In the future we will maybe change this as a field in a response object."
content: content:
application/json: application/json:
schema: schema:
@ -714,11 +721,6 @@ paths:
responses: responses:
200: 200:
description: "successful operation" description: "successful operation"
headers:
Guid-Shop-Article-Config:
schema:
type: "string"
description: "The ShopArticleConfig which was used to build the response. With this unification the configuration is maybe not precise, but you can show the results in a unified form (columns). Currently it's a response header. In the future we will maybe change this as a field in a response object."
content: content:
application/json: application/json:
schema: schema:
@ -738,6 +740,13 @@ paths:
- $ref: "#/components/parameters/BinaryObjectContentType" - $ref: "#/components/parameters/BinaryObjectContentType"
- $ref: "#/components/parameters/GuidShopArticle" - $ref: "#/components/parameters/GuidShopArticle"
- $ref: "#/components/parameters/GuidMotorcycleModel" - $ref: "#/components/parameters/GuidMotorcycleModel"
- name: "GuidShopArticle2"
in: "query"
required: false
schema:
type: "string"
default: null
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
responses: responses:
200: 200:
description: "successful operation" description: "successful operation"
@ -1335,6 +1344,7 @@ components:
- "Designation" - "Designation"
- "Number" - "Number"
- "IsActive" - "IsActive"
- "DefaultDeliveryDate"
properties: properties:
Guid: Guid:
type: "string" type: "string"
@ -1356,6 +1366,9 @@ components:
type: "number" type: "number"
Longitude: Longitude:
type: "number" type: "number"
DefaultDeliveryDate:
type: "string"
format: "date"
example: example:
Guid: "ebb89e89-8d25-809e-7814-c53b686ae164" Guid: "ebb89e89-8d25-809e-7814-c53b686ae164"
Designation: "Zentrale" Designation: "Zentrale"
@ -1408,9 +1421,16 @@ components:
type: "object" type: "object"
required: required:
- "Guid" - "Guid"
- "DesiredAmountOfDirectSearch"
- "DesiredAmountOfComfortSearch"
- "Columns"
properties: properties:
Guid: Guid:
type: "string" type: "string"
DesiredAmountOfDirectSearch:
type: "number"
DesiredAmountOfComfortSearch:
type: "number"
Columns: Columns:
type: "array" type: "array"
items: items:
@ -1474,6 +1494,16 @@ components:
type: "string" type: "string"
GuidVehicleType: GuidVehicleType:
type: "string" type: "string"
TypeGroups:
type: "array"
items:
type: "object"
required:
- "Designation"
- "Types"
properties:
Designation:
type: "string"
Types: Types:
type: "array" type: "array"
items: items:
@ -1861,6 +1891,7 @@ components:
- "Guid" - "Guid"
- "GuidCurrency" - "GuidCurrency"
- "DefaultAmount" - "DefaultAmount"
- "DefaultDeliveryDate"
- "OneClickPurchase" - "OneClickPurchase"
- "FullTaxPercentage" - "FullTaxPercentage"
- "ReducedTaxPercentage" - "ReducedTaxPercentage"
@ -1886,6 +1917,10 @@ components:
DefaultAmount: DefaultAmount:
type: "number" type: "number"
readOnly: true readOnly: true
DefaultDeliveryDate:
type: "string"
format: "date"
readOnly: true
OneClickPurchase: OneClickPurchase:
type: "boolean" type: "boolean"
readOnly: true readOnly: true