@connectedxm/admin 4.2.7 → 4.2.10

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.cts CHANGED
@@ -274,8 +274,6 @@ interface Account extends BaseAccount {
274
274
  banner: BaseImage | null;
275
275
  phone: string | null;
276
276
  interests: BaseInterest[];
277
- title: string | null;
278
- company: string | null;
279
277
  bio: string | null;
280
278
  website: string | null;
281
279
  facebook: string | null;
@@ -1404,10 +1402,8 @@ interface LinkPreview extends BaseLinkPreview {
1404
1402
  }
1405
1403
  interface NotificationPreferences {
1406
1404
  newFollowerPush: boolean;
1407
- newFollowerEmail: boolean;
1408
1405
  likePush: boolean;
1409
1406
  commentPush: boolean;
1410
- commentEmail: boolean;
1411
1407
  transferPush: boolean;
1412
1408
  transferEmail: boolean;
1413
1409
  supportTicketConfirmationEmail: boolean;
@@ -1535,9 +1531,7 @@ interface Organization extends BaseOrganization {
1535
1531
  darkIcon: BaseImage | null;
1536
1532
  darkLogoId: string | null;
1537
1533
  darkLogo: BaseImage | null;
1538
- requireCompany: boolean;
1539
1534
  requirePhone: boolean;
1540
- requireTitle: boolean;
1541
1535
  requestInternalRefId: boolean;
1542
1536
  internalRefIdName: string | null;
1543
1537
  authLayout: AuthLayout;
@@ -2690,6 +2684,8 @@ interface BaseEventPassType {
2690
2684
  taxLocation: TaxLocationType;
2691
2685
  createdAt: string;
2692
2686
  updatedAt: string;
2687
+ requiredPassTypeId: string | null;
2688
+ requiredPassType: BaseEventPassType | null;
2693
2689
  }
2694
2690
  interface EventPassType extends BaseEventPassType {
2695
2691
  overrideStartDate: string | null;
@@ -2700,6 +2696,7 @@ interface EventPassType extends BaseEventPassType {
2700
2696
  _count: {
2701
2697
  purchases: number;
2702
2698
  };
2699
+ dependentPassTypes: BaseEventPassType[];
2703
2700
  }
2704
2701
  interface BaseEventPassTypePriceSchedule {
2705
2702
  id: string;
@@ -3169,8 +3166,6 @@ interface BaseLead {
3169
3166
  id: string;
3170
3167
  firstName: string | null;
3171
3168
  lastName: string | null;
3172
- company: string | null;
3173
- title: string | null;
3174
3169
  shareAccount: {
3175
3170
  id: string;
3176
3171
  image: BaseImage;
@@ -3190,6 +3185,10 @@ interface Lead extends BaseLead {
3190
3185
  twitter: string | null;
3191
3186
  tikTok: string | null;
3192
3187
  note: string | null;
3188
+ attributes: {
3189
+ name: string;
3190
+ value: string;
3191
+ }[];
3193
3192
  updatedAt: string;
3194
3193
  }
3195
3194
  declare enum DayOfWeek {
@@ -3828,8 +3827,6 @@ interface AccountCreateInputs {
3828
3827
  imageId?: string | null;
3829
3828
  bannerId?: string | null;
3830
3829
  phone?: string | null;
3831
- title?: string | null;
3832
- company?: string | null;
3833
3830
  bio?: string | null;
3834
3831
  website?: string | null;
3835
3832
  video?: string | null;
@@ -3858,8 +3855,6 @@ interface AccountUpdateInputs {
3858
3855
  username?: string | null;
3859
3856
  email?: string | null;
3860
3857
  phone?: string | null;
3861
- title?: string | null;
3862
- company?: string | null;
3863
3858
  bio?: string | null;
3864
3859
  website?: string | null;
3865
3860
  video?: string | null;
@@ -4929,8 +4924,6 @@ interface OrganizationUpdateInputs {
4929
4924
  authLayout?: keyof typeof AuthLayout;
4930
4925
  emailAuthEnabled?: boolean;
4931
4926
  requirePhone?: boolean;
4932
- requireTitle?: boolean;
4933
- requireCompany?: boolean;
4934
4927
  requestInternalRefId?: boolean;
4935
4928
  internalRefIdName?: string | null;
4936
4929
  iosAppLink?: string | null;
@@ -5313,6 +5306,7 @@ interface PassTypeCreateInputs {
5313
5306
  maxQuantityPerSale?: number | string | null;
5314
5307
  limitPerAccount?: number | string | null;
5315
5308
  emailDomains?: string | null;
5309
+ requiredPassTypeId?: string | null;
5316
5310
  sortOrder?: number | string | null;
5317
5311
  enableCoupons?: boolean;
5318
5312
  overrideStartDate?: string | null;
@@ -5339,6 +5333,7 @@ interface PassTypeUpdateInputs {
5339
5333
  maxQuantityPerSale?: number | string | null;
5340
5334
  limitPerAccount?: number | string | null;
5341
5335
  emailDomains?: string | null;
5336
+ requiredPassTypeId?: string | null;
5342
5337
  sortOrder?: number | string | null;
5343
5338
  enableCoupons?: boolean;
5344
5339
  minCouponQuantity?: number;
package/dist/index.d.ts CHANGED
@@ -274,8 +274,6 @@ interface Account extends BaseAccount {
274
274
  banner: BaseImage | null;
275
275
  phone: string | null;
276
276
  interests: BaseInterest[];
277
- title: string | null;
278
- company: string | null;
279
277
  bio: string | null;
280
278
  website: string | null;
281
279
  facebook: string | null;
@@ -1404,10 +1402,8 @@ interface LinkPreview extends BaseLinkPreview {
1404
1402
  }
1405
1403
  interface NotificationPreferences {
1406
1404
  newFollowerPush: boolean;
1407
- newFollowerEmail: boolean;
1408
1405
  likePush: boolean;
1409
1406
  commentPush: boolean;
1410
- commentEmail: boolean;
1411
1407
  transferPush: boolean;
1412
1408
  transferEmail: boolean;
1413
1409
  supportTicketConfirmationEmail: boolean;
@@ -1535,9 +1531,7 @@ interface Organization extends BaseOrganization {
1535
1531
  darkIcon: BaseImage | null;
1536
1532
  darkLogoId: string | null;
1537
1533
  darkLogo: BaseImage | null;
1538
- requireCompany: boolean;
1539
1534
  requirePhone: boolean;
1540
- requireTitle: boolean;
1541
1535
  requestInternalRefId: boolean;
1542
1536
  internalRefIdName: string | null;
1543
1537
  authLayout: AuthLayout;
@@ -2690,6 +2684,8 @@ interface BaseEventPassType {
2690
2684
  taxLocation: TaxLocationType;
2691
2685
  createdAt: string;
2692
2686
  updatedAt: string;
2687
+ requiredPassTypeId: string | null;
2688
+ requiredPassType: BaseEventPassType | null;
2693
2689
  }
2694
2690
  interface EventPassType extends BaseEventPassType {
2695
2691
  overrideStartDate: string | null;
@@ -2700,6 +2696,7 @@ interface EventPassType extends BaseEventPassType {
2700
2696
  _count: {
2701
2697
  purchases: number;
2702
2698
  };
2699
+ dependentPassTypes: BaseEventPassType[];
2703
2700
  }
2704
2701
  interface BaseEventPassTypePriceSchedule {
2705
2702
  id: string;
@@ -3169,8 +3166,6 @@ interface BaseLead {
3169
3166
  id: string;
3170
3167
  firstName: string | null;
3171
3168
  lastName: string | null;
3172
- company: string | null;
3173
- title: string | null;
3174
3169
  shareAccount: {
3175
3170
  id: string;
3176
3171
  image: BaseImage;
@@ -3190,6 +3185,10 @@ interface Lead extends BaseLead {
3190
3185
  twitter: string | null;
3191
3186
  tikTok: string | null;
3192
3187
  note: string | null;
3188
+ attributes: {
3189
+ name: string;
3190
+ value: string;
3191
+ }[];
3193
3192
  updatedAt: string;
3194
3193
  }
3195
3194
  declare enum DayOfWeek {
@@ -3828,8 +3827,6 @@ interface AccountCreateInputs {
3828
3827
  imageId?: string | null;
3829
3828
  bannerId?: string | null;
3830
3829
  phone?: string | null;
3831
- title?: string | null;
3832
- company?: string | null;
3833
3830
  bio?: string | null;
3834
3831
  website?: string | null;
3835
3832
  video?: string | null;
@@ -3858,8 +3855,6 @@ interface AccountUpdateInputs {
3858
3855
  username?: string | null;
3859
3856
  email?: string | null;
3860
3857
  phone?: string | null;
3861
- title?: string | null;
3862
- company?: string | null;
3863
3858
  bio?: string | null;
3864
3859
  website?: string | null;
3865
3860
  video?: string | null;
@@ -4929,8 +4924,6 @@ interface OrganizationUpdateInputs {
4929
4924
  authLayout?: keyof typeof AuthLayout;
4930
4925
  emailAuthEnabled?: boolean;
4931
4926
  requirePhone?: boolean;
4932
- requireTitle?: boolean;
4933
- requireCompany?: boolean;
4934
4927
  requestInternalRefId?: boolean;
4935
4928
  internalRefIdName?: string | null;
4936
4929
  iosAppLink?: string | null;
@@ -5313,6 +5306,7 @@ interface PassTypeCreateInputs {
5313
5306
  maxQuantityPerSale?: number | string | null;
5314
5307
  limitPerAccount?: number | string | null;
5315
5308
  emailDomains?: string | null;
5309
+ requiredPassTypeId?: string | null;
5316
5310
  sortOrder?: number | string | null;
5317
5311
  enableCoupons?: boolean;
5318
5312
  overrideStartDate?: string | null;
@@ -5339,6 +5333,7 @@ interface PassTypeUpdateInputs {
5339
5333
  maxQuantityPerSale?: number | string | null;
5340
5334
  limitPerAccount?: number | string | null;
5341
5335
  emailDomains?: string | null;
5336
+ requiredPassTypeId?: string | null;
5342
5337
  sortOrder?: number | string | null;
5343
5338
  enableCoupons?: boolean;
5344
5339
  minCouponQuantity?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "4.2.7",
3
+ "version": "4.2.10",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",