@connectedxm/admin 1.1.13 → 1.1.15

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
@@ -401,6 +401,7 @@ interface BaseAdvertisement {
401
401
  weight: number;
402
402
  accountId: string | null;
403
403
  eventId: string | null;
404
+ enabled: boolean;
404
405
  }
405
406
  interface Advertisement extends BaseAdvertisement {
406
407
  account: BaseAccount | null;
@@ -2537,6 +2538,7 @@ interface AdvertisementCreateInputs {
2537
2538
  accountId?: string | null;
2538
2539
  eventId?: string | null;
2539
2540
  eventOnly?: boolean;
2541
+ enabled?: boolean;
2540
2542
  }
2541
2543
  interface AdvertisementUpdateInputs {
2542
2544
  type?: keyof typeof AdvertisementType | null;
@@ -2550,6 +2552,7 @@ interface AdvertisementUpdateInputs {
2550
2552
  accountId?: string | null;
2551
2553
  eventId?: string | null;
2552
2554
  eventOnly?: boolean;
2555
+ enabled?: boolean;
2553
2556
  }
2554
2557
  interface AnnouncementCreateInputs {
2555
2558
  title: string | null;
@@ -2989,6 +2992,7 @@ interface EventPassUpdateInputs {
2989
2992
  ticketId?: string | null;
2990
2993
  reservationStart?: string | null;
2991
2994
  reservationEnd?: string | null;
2995
+ couponId?: string | null;
2992
2996
  }
2993
2997
  interface EventAttendeeUpdateInputs {
2994
2998
  }
package/dist/index.d.ts CHANGED
@@ -401,6 +401,7 @@ interface BaseAdvertisement {
401
401
  weight: number;
402
402
  accountId: string | null;
403
403
  eventId: string | null;
404
+ enabled: boolean;
404
405
  }
405
406
  interface Advertisement extends BaseAdvertisement {
406
407
  account: BaseAccount | null;
@@ -2537,6 +2538,7 @@ interface AdvertisementCreateInputs {
2537
2538
  accountId?: string | null;
2538
2539
  eventId?: string | null;
2539
2540
  eventOnly?: boolean;
2541
+ enabled?: boolean;
2540
2542
  }
2541
2543
  interface AdvertisementUpdateInputs {
2542
2544
  type?: keyof typeof AdvertisementType | null;
@@ -2550,6 +2552,7 @@ interface AdvertisementUpdateInputs {
2550
2552
  accountId?: string | null;
2551
2553
  eventId?: string | null;
2552
2554
  eventOnly?: boolean;
2555
+ enabled?: boolean;
2553
2556
  }
2554
2557
  interface AnnouncementCreateInputs {
2555
2558
  title: string | null;
@@ -2989,6 +2992,7 @@ interface EventPassUpdateInputs {
2989
2992
  ticketId?: string | null;
2990
2993
  reservationStart?: string | null;
2991
2994
  reservationEnd?: string | null;
2995
+ couponId?: string | null;
2992
2996
  }
2993
2997
  interface EventAttendeeUpdateInputs {
2994
2998
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {