@connectedxm/admin 1.0.8 → 1.0.9

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 CHANGED
@@ -645,6 +645,9 @@ interface BaseCoupon {
645
645
  emailDomains: string | null;
646
646
  ticketId: string | null;
647
647
  ticket: BaseEventPassType | null;
648
+ applyToPassType: boolean;
649
+ applyToAddOns: boolean;
650
+ applyToReservation: boolean;
648
651
  }
649
652
  interface Coupon extends BaseCoupon {
650
653
  registrationId: string | null;
@@ -2741,6 +2744,9 @@ interface EventCouponCreateInputs {
2741
2744
  emailDomains?: string | null;
2742
2745
  ticketId?: string | null;
2743
2746
  managerId?: string | null;
2747
+ applyToPassType?: boolean;
2748
+ applyToAddOns?: boolean;
2749
+ applyToReservation?: boolean;
2744
2750
  }
2745
2751
  interface EventCouponUpdateInputs {
2746
2752
  code?: string | null;
@@ -2758,6 +2764,9 @@ interface EventCouponUpdateInputs {
2758
2764
  emailDomains?: string | null;
2759
2765
  ticketId?: string | null;
2760
2766
  registrationId?: string | null;
2767
+ applyToPassType?: boolean;
2768
+ applyToAddOns?: boolean;
2769
+ applyToReservation?: boolean;
2761
2770
  }
2762
2771
  interface EventFaqSectionCreateInputs {
2763
2772
  name?: string | null;
package/dist/index.d.ts CHANGED
@@ -645,6 +645,9 @@ interface BaseCoupon {
645
645
  emailDomains: string | null;
646
646
  ticketId: string | null;
647
647
  ticket: BaseEventPassType | null;
648
+ applyToPassType: boolean;
649
+ applyToAddOns: boolean;
650
+ applyToReservation: boolean;
648
651
  }
649
652
  interface Coupon extends BaseCoupon {
650
653
  registrationId: string | null;
@@ -2741,6 +2744,9 @@ interface EventCouponCreateInputs {
2741
2744
  emailDomains?: string | null;
2742
2745
  ticketId?: string | null;
2743
2746
  managerId?: string | null;
2747
+ applyToPassType?: boolean;
2748
+ applyToAddOns?: boolean;
2749
+ applyToReservation?: boolean;
2744
2750
  }
2745
2751
  interface EventCouponUpdateInputs {
2746
2752
  code?: string | null;
@@ -2758,6 +2764,9 @@ interface EventCouponUpdateInputs {
2758
2764
  emailDomains?: string | null;
2759
2765
  ticketId?: string | null;
2760
2766
  registrationId?: string | null;
2767
+ applyToPassType?: boolean;
2768
+ applyToAddOns?: boolean;
2769
+ applyToReservation?: boolean;
2761
2770
  }
2762
2771
  interface EventFaqSectionCreateInputs {
2763
2772
  name?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {