mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
- Regenerated all Swagger API clients (availability, checkout, crm, isa, print, wws) - Updated CRM loyalty card API endpoints (removed interests, added booking/bon management) - Temporarily disabled interests form block functionality due to API changes - Removed deprecated models (check-loyalty-card-result, loyalty-card-status, entity-key-value) - Added new loyalty booking and bon management models and services
18 lines
210 B
TypeScript
18 lines
210 B
TypeScript
/* tslint:disable */
|
|
|
|
/**
|
|
* Webshop Availability Request Item DTO
|
|
*/
|
|
export interface WebshopAvailabilityRequestItemDTO {
|
|
|
|
/**
|
|
* EAN
|
|
*/
|
|
ean?: string;
|
|
|
|
/**
|
|
* Menge1)
|
|
*/
|
|
quantity: number;
|
|
}
|