Files
ISA-Frontend/generated/swagger/availability-api/src/models/webshop-availability-request-dto.ts
Lorenz Hilpert 8e4d4ff804 🔄 chore: sync swagger API clients with backend updates
- 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
2025-11-06 17:03:37 +01:00

29 lines
541 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* tslint:disable */
import { WebshopAvailabilityRequestItemDTO } from './webshop-availability-request-item-dto';
/**
* Webshop Availability Request DTO
*/
export interface WebshopAvailabilityRequestDTO {
/**
* Branch PKs
*/
branchIds?: Array<number>;
/**
* Artikel: { EAN, Quantity }
*/
items?: Array<WebshopAvailabilityRequestItemDTO>;
/**
* Reine Bestandsabfrage (default: false)
*/
stockOnly: boolean;
/**
* WWS Geschaeftsnr (Beispiel: 2506 Pinneberg)
*/
wwsStockIds?: Array<number>;
}