tickera-angular-components 0.0.1-dev.107 → 0.0.1-dev.108
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/i18n/en.json
CHANGED
package/i18n/es.json
CHANGED
package/index.d.ts
CHANGED
|
@@ -427,7 +427,8 @@ interface BreadcrumbStep {
|
|
|
427
427
|
declare enum OrderItemType {
|
|
428
428
|
TICKET = "TICKET",
|
|
429
429
|
PRODUCT = "PRODUCT",
|
|
430
|
-
GIFT_BOND = "GIFT_BOND"
|
|
430
|
+
GIFT_BOND = "GIFT_BOND",
|
|
431
|
+
CORPORATE_BOND = "CORPORATE_BOND"
|
|
431
432
|
}
|
|
432
433
|
|
|
433
434
|
declare enum OrderStatus {
|
|
@@ -3611,11 +3612,13 @@ declare class OrderItemsComponent {
|
|
|
3611
3612
|
protected get products(): Order['order_items'];
|
|
3612
3613
|
protected get tickets(): Order['order_items'];
|
|
3613
3614
|
protected get giftBonds(): Order['order_items'];
|
|
3615
|
+
protected get corporateBonds(): Order['order_items'];
|
|
3614
3616
|
protected get showActionColumn(): boolean;
|
|
3615
3617
|
protected itemTotal(quantity: number, price: number): number;
|
|
3616
3618
|
protected hasDiscount(): boolean;
|
|
3617
3619
|
protected get totals(): {
|
|
3618
3620
|
giftBonds: number;
|
|
3621
|
+
corporateBonds: number;
|
|
3619
3622
|
products: number;
|
|
3620
3623
|
tickets: number;
|
|
3621
3624
|
};
|