tickera-angular-components 0.0.1-dev.206 → 0.0.1-dev.208

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
@@ -1437,11 +1437,8 @@ interface Order extends Auditable {
1437
1437
  status: OrderStatus;
1438
1438
  show_snapshot: OrderShowSnapshot | null;
1439
1439
  performance_snapshot: OrderPerformanceSnapshot | null;
1440
- /** true cuando la orden es una cortesía/donación pedagógica. */
1441
1440
  is_courtesy: boolean;
1442
- /** Beneficiario (texto libre) de la cortesía pedagógica, si aplica. */
1443
1441
  courtesy_beneficiary: string | null;
1444
- /** Tipo de visibilidad de la función al momento de la compra (pedagogic, private, public). */
1445
1442
  performance_visibility_snapshot: string | null;
1446
1443
  payment_method: PaymentMethod | null;
1447
1444
  terms_accepted: boolean;
@@ -1453,12 +1450,11 @@ interface Order extends Auditable {
1453
1450
  corporate_bond_code_id: number | null;
1454
1451
  gift_bond: GiftBond | null;
1455
1452
  gift_bond_id: number | null;
1456
- /** Snapshot de la Tarjeta VIP usada como método de pago (VIP_BALANCE). */
1457
1453
  vip_snapshot: Record<string, any> | null;
1458
1454
  vip_card_id: number | null;
1459
- /** Snapshot del Abono (subscription) usado para redimir la boleta. */
1460
1455
  subscription_snapshot: Record<string, any> | null;
1461
1456
  subscription_id: number | null;
1457
+ subscription_redeemed_tickets_count?: number | null;
1462
1458
  comments: string | null;
1463
1459
  address_notes: string | null;
1464
1460
  mercado_pago_preference_id: string;
@@ -2033,10 +2029,7 @@ interface OrderDiscountInfo {
2033
2029
  value: number;
2034
2030
  discountType: 'percentage' | 'fixed' | null;
2035
2031
  icon: string;
2036
- /**
2037
- * true cuando esta fuente de descuento tambien exonero la tarifa de
2038
- * servicio de la orden (VIP/Abono con `service_fee_exempt`).
2039
- */
2032
+ redeemedTicketsCount?: number | null;
2040
2033
  serviceFeeExempt: boolean;
2041
2034
  }
2042
2035
  declare function getOrderDiscount(order: Order): OrderDiscountInfo;
@@ -4658,6 +4651,7 @@ declare class OrderDiscountAppliedComponent {
4658
4651
  protected get discountInfo(): OrderDiscountInfo;
4659
4652
  protected get hasDiscount(): boolean;
4660
4653
  protected get discountPercentage(): number | null;
4654
+ protected get redeemedTicketsCount(): number | null;
4661
4655
  protected get serviceFeeExemptValue(): number;
4662
4656
  protected get badgeColors(): {
4663
4657
  text: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickera-angular-components",
3
- "version": "0.0.1-dev.206",
3
+ "version": "0.0.1-dev.208",
4
4
  "description": "Angular 20 standalone component library for Tickera backoffice system",
5
5
  "license": "MIT",
6
6
  "repository": {