Merged PR 2026: feat(crm): add customer loyalty cards feature with points summary

Related work items: #5312
This commit is contained in:
Lorenz Hilpert
2025-11-14 12:59:02 +00:00
committed by Nino Righi
parent 70ded96858
commit 5057d56532
40 changed files with 1176 additions and 108 deletions

View File

@@ -9,7 +9,6 @@ export * from './order-type-feature';
export * from './payer-type';
export * from './price-value';
export * from './price';
export * from './product';
export * from './response-args';
export * from './return-value';
export * from './vat-type';

View File

@@ -1,5 +0,0 @@
import { ProductDTO as CatProductDTO } from '@generated/swagger/cat-search-api';
import { ProductDTO as CheckoutProductDTO } from '@generated/swagger/checkout-api';
import { ProductDTO as OmsProductDTO } from '@generated/swagger/oms-api';
export type Product = CatProductDTO | CheckoutProductDTO | OmsProductDTO;