@connectedxm/client 6.5.3 → 6.5.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -163,6 +163,7 @@ interface BaseAccount {
163
163
  firstName: string | null;
164
164
  lastName: string | null;
165
165
  image: BaseImage | null;
166
+ needsProfileCompletion: boolean;
166
167
  accountTiers: BaseAccountTier[];
167
168
  subscriptions: {
168
169
  subscriptionProduct: {
@@ -611,6 +612,7 @@ interface BasePassType {
611
612
  maxCouponQuantity: number | null;
612
613
  sortOrder: number;
613
614
  overrideStartDate: string | null;
615
+ requiredPassTypeId: string | null;
614
616
  taxCode: string | null;
615
617
  taxIncluded: boolean;
616
618
  }
@@ -618,6 +620,7 @@ interface PassType extends BasePassType {
618
620
  visibility: TicketVisibility;
619
621
  active: boolean;
620
622
  event: BaseEvent;
623
+ requiredPassType: BasePassType | null;
621
624
  }
622
625
  interface BasePassTypePriceSchedule {
623
626
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.5.3",
3
+ "version": "6.5.4",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",