@connectedxm/admin 4.2.9 → 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 +5 -10
- package/dist/index.d.ts +5 -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,8 @@ interface BaseEventPassType {
|
|
|
2688
2684
|
taxLocation: TaxLocationType;
|
|
2689
2685
|
createdAt: string;
|
|
2690
2686
|
updatedAt: string;
|
|
2687
|
+
requiredPassTypeId: string | null;
|
|
2688
|
+
requiredPassType: BaseEventPassType | null;
|
|
2691
2689
|
}
|
|
2692
2690
|
interface EventPassType extends BaseEventPassType {
|
|
2693
2691
|
overrideStartDate: string | null;
|
|
@@ -2698,6 +2696,7 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2698
2696
|
_count: {
|
|
2699
2697
|
purchases: number;
|
|
2700
2698
|
};
|
|
2699
|
+
dependentPassTypes: BaseEventPassType[];
|
|
2701
2700
|
}
|
|
2702
2701
|
interface BaseEventPassTypePriceSchedule {
|
|
2703
2702
|
id: string;
|
|
@@ -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;
|
|
@@ -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,8 @@ interface BaseEventPassType {
|
|
|
2688
2684
|
taxLocation: TaxLocationType;
|
|
2689
2685
|
createdAt: string;
|
|
2690
2686
|
updatedAt: string;
|
|
2687
|
+
requiredPassTypeId: string | null;
|
|
2688
|
+
requiredPassType: BaseEventPassType | null;
|
|
2691
2689
|
}
|
|
2692
2690
|
interface EventPassType extends BaseEventPassType {
|
|
2693
2691
|
overrideStartDate: string | null;
|
|
@@ -2698,6 +2696,7 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2698
2696
|
_count: {
|
|
2699
2697
|
purchases: number;
|
|
2700
2698
|
};
|
|
2699
|
+
dependentPassTypes: BaseEventPassType[];
|
|
2701
2700
|
}
|
|
2702
2701
|
interface BaseEventPassTypePriceSchedule {
|
|
2703
2702
|
id: string;
|
|
@@ -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;
|