tickera-angular-components 0.0.1-dev.17 → 0.0.1-dev.19
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
CHANGED
|
@@ -171,7 +171,8 @@ declare enum CouponStatus {
|
|
|
171
171
|
declare enum CorporateBondStatus {
|
|
172
172
|
ACTIVE = "ACTIVE",
|
|
173
173
|
INACTIVE = "INACTIVE",
|
|
174
|
-
EXPIRED = "EXPIRED"
|
|
174
|
+
EXPIRED = "EXPIRED",
|
|
175
|
+
CONSUMED = "CONSUMED"
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
declare enum PerformanceStatus {
|
|
@@ -210,9 +211,9 @@ declare enum RoomMapElementType {
|
|
|
210
211
|
|
|
211
212
|
declare enum GiftBondStatus {
|
|
212
213
|
ACTIVE = "ACTIVE",
|
|
213
|
-
|
|
214
|
+
INACTIVE = "INACTIVE",
|
|
214
215
|
EXPIRED = "EXPIRED",
|
|
215
|
-
|
|
216
|
+
CONSUMED = "CONSUMED"
|
|
216
217
|
}
|
|
217
218
|
|
|
218
219
|
declare enum OrderItemType {
|
|
@@ -789,6 +790,7 @@ interface OrderItem {
|
|
|
789
790
|
interface Coupon extends Auditable {
|
|
790
791
|
id: number;
|
|
791
792
|
code: string;
|
|
793
|
+
billing_code: string;
|
|
792
794
|
description?: string;
|
|
793
795
|
discount_type: CouponDiscountType;
|
|
794
796
|
discount_value: number;
|
|
@@ -805,6 +807,8 @@ interface Coupon extends Auditable {
|
|
|
805
807
|
applicable_performance_ids?: number[];
|
|
806
808
|
applicable_price_zone_ids?: number[];
|
|
807
809
|
applies_to_service_fee?: boolean;
|
|
810
|
+
orders?: Order[];
|
|
811
|
+
customers?: Customer[];
|
|
808
812
|
}
|
|
809
813
|
|
|
810
814
|
interface CorporateBond {
|