tickera-angular-components 0.0.1-dev.17 → 0.0.1-dev.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -789,6 +789,7 @@ interface OrderItem {
|
|
|
789
789
|
interface Coupon extends Auditable {
|
|
790
790
|
id: number;
|
|
791
791
|
code: string;
|
|
792
|
+
billing_code: string;
|
|
792
793
|
description?: string;
|
|
793
794
|
discount_type: CouponDiscountType;
|
|
794
795
|
discount_value: number;
|
|
@@ -805,6 +806,8 @@ interface Coupon extends Auditable {
|
|
|
805
806
|
applicable_performance_ids?: number[];
|
|
806
807
|
applicable_price_zone_ids?: number[];
|
|
807
808
|
applies_to_service_fee?: boolean;
|
|
809
|
+
orders?: Order[];
|
|
810
|
+
customers?: Customer[];
|
|
808
811
|
}
|
|
809
812
|
|
|
810
813
|
interface CorporateBond {
|