@connectedxm/client 0.5.23 → 0.5.24
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -569,6 +569,7 @@ interface BaseCoupon {
|
|
|
569
569
|
code: string;
|
|
570
570
|
discountAmount: number;
|
|
571
571
|
discountPercent: number;
|
|
572
|
+
ticket: BaseTicket | null;
|
|
572
573
|
}
|
|
573
574
|
declare enum CouponType {
|
|
574
575
|
order = "order",
|
|
@@ -576,7 +577,6 @@ declare enum CouponType {
|
|
|
576
577
|
}
|
|
577
578
|
interface Coupon extends BaseCoupon {
|
|
578
579
|
description: string | null;
|
|
579
|
-
ticket: BaseTicket | null;
|
|
580
580
|
}
|
|
581
581
|
declare const isTypeCoupon: (coupon: BaseCoupon | Coupon) => coupon is Coupon;
|
|
582
582
|
interface ManagedCoupon extends Coupon {
|
package/dist/index.d.ts
CHANGED
|
@@ -569,6 +569,7 @@ interface BaseCoupon {
|
|
|
569
569
|
code: string;
|
|
570
570
|
discountAmount: number;
|
|
571
571
|
discountPercent: number;
|
|
572
|
+
ticket: BaseTicket | null;
|
|
572
573
|
}
|
|
573
574
|
declare enum CouponType {
|
|
574
575
|
order = "order",
|
|
@@ -576,7 +577,6 @@ declare enum CouponType {
|
|
|
576
577
|
}
|
|
577
578
|
interface Coupon extends BaseCoupon {
|
|
578
579
|
description: string | null;
|
|
579
|
-
ticket: BaseTicket | null;
|
|
580
580
|
}
|
|
581
581
|
declare const isTypeCoupon: (coupon: BaseCoupon | Coupon) => coupon is Coupon;
|
|
582
582
|
interface ManagedCoupon extends Coupon {
|