@connectedxm/admin 4.2.9 → 4.2.11
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 +4 -10
- package/dist/index.d.ts +4 -10
- package/package.json +1 -1
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;
|
|
@@ -1533,9 +1531,7 @@ interface Organization extends BaseOrganization {
|
|
|
1533
1531
|
darkIcon: BaseImage | null;
|
|
1534
1532
|
darkLogoId: string | null;
|
|
1535
1533
|
darkLogo: BaseImage | null;
|
|
1536
|
-
requireCompany: boolean;
|
|
1537
1534
|
requirePhone: boolean;
|
|
1538
|
-
requireTitle: boolean;
|
|
1539
1535
|
requestInternalRefId: boolean;
|
|
1540
1536
|
internalRefIdName: string | null;
|
|
1541
1537
|
authLayout: AuthLayout;
|
|
@@ -2688,6 +2684,7 @@ interface BaseEventPassType {
|
|
|
2688
2684
|
taxLocation: TaxLocationType;
|
|
2689
2685
|
createdAt: string;
|
|
2690
2686
|
updatedAt: string;
|
|
2687
|
+
requiredPassTypeId: string | null;
|
|
2691
2688
|
}
|
|
2692
2689
|
interface EventPassType extends BaseEventPassType {
|
|
2693
2690
|
overrideStartDate: string | null;
|
|
@@ -2698,6 +2695,7 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2698
2695
|
_count: {
|
|
2699
2696
|
purchases: number;
|
|
2700
2697
|
};
|
|
2698
|
+
requiredPassType: BaseEventPassType | null;
|
|
2701
2699
|
}
|
|
2702
2700
|
interface BaseEventPassTypePriceSchedule {
|
|
2703
2701
|
id: string;
|
|
@@ -3828,8 +3826,6 @@ interface AccountCreateInputs {
|
|
|
3828
3826
|
imageId?: string | null;
|
|
3829
3827
|
bannerId?: string | null;
|
|
3830
3828
|
phone?: string | null;
|
|
3831
|
-
title?: string | null;
|
|
3832
|
-
company?: string | null;
|
|
3833
3829
|
bio?: string | null;
|
|
3834
3830
|
website?: string | null;
|
|
3835
3831
|
video?: string | null;
|
|
@@ -3858,8 +3854,6 @@ interface AccountUpdateInputs {
|
|
|
3858
3854
|
username?: string | null;
|
|
3859
3855
|
email?: string | null;
|
|
3860
3856
|
phone?: string | null;
|
|
3861
|
-
title?: string | null;
|
|
3862
|
-
company?: string | null;
|
|
3863
3857
|
bio?: string | null;
|
|
3864
3858
|
website?: string | null;
|
|
3865
3859
|
video?: string | null;
|
|
@@ -4929,8 +4923,6 @@ interface OrganizationUpdateInputs {
|
|
|
4929
4923
|
authLayout?: keyof typeof AuthLayout;
|
|
4930
4924
|
emailAuthEnabled?: boolean;
|
|
4931
4925
|
requirePhone?: boolean;
|
|
4932
|
-
requireTitle?: boolean;
|
|
4933
|
-
requireCompany?: boolean;
|
|
4934
4926
|
requestInternalRefId?: boolean;
|
|
4935
4927
|
internalRefIdName?: string | null;
|
|
4936
4928
|
iosAppLink?: string | null;
|
|
@@ -5313,6 +5305,7 @@ interface PassTypeCreateInputs {
|
|
|
5313
5305
|
maxQuantityPerSale?: number | string | null;
|
|
5314
5306
|
limitPerAccount?: number | string | null;
|
|
5315
5307
|
emailDomains?: string | null;
|
|
5308
|
+
requiredPassTypeId?: string | null;
|
|
5316
5309
|
sortOrder?: number | string | null;
|
|
5317
5310
|
enableCoupons?: boolean;
|
|
5318
5311
|
overrideStartDate?: string | null;
|
|
@@ -5339,6 +5332,7 @@ interface PassTypeUpdateInputs {
|
|
|
5339
5332
|
maxQuantityPerSale?: number | string | null;
|
|
5340
5333
|
limitPerAccount?: number | string | null;
|
|
5341
5334
|
emailDomains?: string | null;
|
|
5335
|
+
requiredPassTypeId?: string | null;
|
|
5342
5336
|
sortOrder?: number | string | null;
|
|
5343
5337
|
enableCoupons?: boolean;
|
|
5344
5338
|
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;
|
|
@@ -1533,9 +1531,7 @@ interface Organization extends BaseOrganization {
|
|
|
1533
1531
|
darkIcon: BaseImage | null;
|
|
1534
1532
|
darkLogoId: string | null;
|
|
1535
1533
|
darkLogo: BaseImage | null;
|
|
1536
|
-
requireCompany: boolean;
|
|
1537
1534
|
requirePhone: boolean;
|
|
1538
|
-
requireTitle: boolean;
|
|
1539
1535
|
requestInternalRefId: boolean;
|
|
1540
1536
|
internalRefIdName: string | null;
|
|
1541
1537
|
authLayout: AuthLayout;
|
|
@@ -2688,6 +2684,7 @@ interface BaseEventPassType {
|
|
|
2688
2684
|
taxLocation: TaxLocationType;
|
|
2689
2685
|
createdAt: string;
|
|
2690
2686
|
updatedAt: string;
|
|
2687
|
+
requiredPassTypeId: string | null;
|
|
2691
2688
|
}
|
|
2692
2689
|
interface EventPassType extends BaseEventPassType {
|
|
2693
2690
|
overrideStartDate: string | null;
|
|
@@ -2698,6 +2695,7 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2698
2695
|
_count: {
|
|
2699
2696
|
purchases: number;
|
|
2700
2697
|
};
|
|
2698
|
+
requiredPassType: BaseEventPassType | null;
|
|
2701
2699
|
}
|
|
2702
2700
|
interface BaseEventPassTypePriceSchedule {
|
|
2703
2701
|
id: string;
|
|
@@ -3828,8 +3826,6 @@ interface AccountCreateInputs {
|
|
|
3828
3826
|
imageId?: string | null;
|
|
3829
3827
|
bannerId?: string | null;
|
|
3830
3828
|
phone?: string | null;
|
|
3831
|
-
title?: string | null;
|
|
3832
|
-
company?: string | null;
|
|
3833
3829
|
bio?: string | null;
|
|
3834
3830
|
website?: string | null;
|
|
3835
3831
|
video?: string | null;
|
|
@@ -3858,8 +3854,6 @@ interface AccountUpdateInputs {
|
|
|
3858
3854
|
username?: string | null;
|
|
3859
3855
|
email?: string | null;
|
|
3860
3856
|
phone?: string | null;
|
|
3861
|
-
title?: string | null;
|
|
3862
|
-
company?: string | null;
|
|
3863
3857
|
bio?: string | null;
|
|
3864
3858
|
website?: string | null;
|
|
3865
3859
|
video?: string | null;
|
|
@@ -4929,8 +4923,6 @@ interface OrganizationUpdateInputs {
|
|
|
4929
4923
|
authLayout?: keyof typeof AuthLayout;
|
|
4930
4924
|
emailAuthEnabled?: boolean;
|
|
4931
4925
|
requirePhone?: boolean;
|
|
4932
|
-
requireTitle?: boolean;
|
|
4933
|
-
requireCompany?: boolean;
|
|
4934
4926
|
requestInternalRefId?: boolean;
|
|
4935
4927
|
internalRefIdName?: string | null;
|
|
4936
4928
|
iosAppLink?: string | null;
|
|
@@ -5313,6 +5305,7 @@ interface PassTypeCreateInputs {
|
|
|
5313
5305
|
maxQuantityPerSale?: number | string | null;
|
|
5314
5306
|
limitPerAccount?: number | string | null;
|
|
5315
5307
|
emailDomains?: string | null;
|
|
5308
|
+
requiredPassTypeId?: string | null;
|
|
5316
5309
|
sortOrder?: number | string | null;
|
|
5317
5310
|
enableCoupons?: boolean;
|
|
5318
5311
|
overrideStartDate?: string | null;
|
|
@@ -5339,6 +5332,7 @@ interface PassTypeUpdateInputs {
|
|
|
5339
5332
|
maxQuantityPerSale?: number | string | null;
|
|
5340
5333
|
limitPerAccount?: number | string | null;
|
|
5341
5334
|
emailDomains?: string | null;
|
|
5335
|
+
requiredPassTypeId?: string | null;
|
|
5342
5336
|
sortOrder?: number | string | null;
|
|
5343
5337
|
enableCoupons?: boolean;
|
|
5344
5338
|
minCouponQuantity?: number;
|