mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +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
29 lines
541 B
TypeScript
29 lines
541 B
TypeScript
/* 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>;
|
||
}
|