@connectedxm/admin 2.8.22 → 2.8.24
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -473,6 +473,7 @@ interface BaseAnnouncement {
|
|
|
473
473
|
email: boolean;
|
|
474
474
|
push: boolean;
|
|
475
475
|
sms: boolean;
|
|
476
|
+
includePasses: boolean;
|
|
476
477
|
accountId: string | null;
|
|
477
478
|
creatorId: string | null;
|
|
478
479
|
eventId: string | null;
|
|
@@ -1904,6 +1905,7 @@ interface BaseEventSession {
|
|
|
1904
1905
|
startTime: string;
|
|
1905
1906
|
endTime: string;
|
|
1906
1907
|
registrationEnd?: string;
|
|
1908
|
+
allowQuickRegister: boolean;
|
|
1907
1909
|
tracks: BaseEventTrack[];
|
|
1908
1910
|
nonSession: boolean;
|
|
1909
1911
|
visible: boolean;
|
|
@@ -3679,6 +3681,7 @@ interface AnnouncementCreateInputs {
|
|
|
3679
3681
|
email?: boolean;
|
|
3680
3682
|
push?: boolean;
|
|
3681
3683
|
filters?: EventAnnouncementFilters | null;
|
|
3684
|
+
includePasses?: boolean;
|
|
3682
3685
|
}
|
|
3683
3686
|
interface AnnouncementUpdateInputs {
|
|
3684
3687
|
title?: string | null;
|
|
@@ -3687,6 +3690,7 @@ interface AnnouncementUpdateInputs {
|
|
|
3687
3690
|
email?: boolean;
|
|
3688
3691
|
push?: boolean;
|
|
3689
3692
|
filters?: EventAnnouncementFilters | null;
|
|
3693
|
+
includePasses?: boolean;
|
|
3690
3694
|
}
|
|
3691
3695
|
interface AnnouncementTranslationUpdateInputs {
|
|
3692
3696
|
title?: string | null;
|
|
@@ -4137,6 +4141,7 @@ interface EventSessionCreateInputs {
|
|
|
4137
4141
|
visible?: boolean;
|
|
4138
4142
|
sortOrder?: number | string | null;
|
|
4139
4143
|
registrationEnabled?: boolean;
|
|
4144
|
+
allowQuickRegister?: boolean;
|
|
4140
4145
|
limit?: number | string | null;
|
|
4141
4146
|
price?: number | string | null;
|
|
4142
4147
|
locationId?: string | null;
|
|
@@ -4165,6 +4170,7 @@ interface EventSessionUpdateInputs {
|
|
|
4165
4170
|
visible?: boolean;
|
|
4166
4171
|
sortOrder?: number | string | null;
|
|
4167
4172
|
registrationEnabled?: boolean;
|
|
4173
|
+
allowQuickRegister?: boolean;
|
|
4168
4174
|
limit?: number | string | null;
|
|
4169
4175
|
price?: number | string | null;
|
|
4170
4176
|
locationId?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -473,6 +473,7 @@ interface BaseAnnouncement {
|
|
|
473
473
|
email: boolean;
|
|
474
474
|
push: boolean;
|
|
475
475
|
sms: boolean;
|
|
476
|
+
includePasses: boolean;
|
|
476
477
|
accountId: string | null;
|
|
477
478
|
creatorId: string | null;
|
|
478
479
|
eventId: string | null;
|
|
@@ -1904,6 +1905,7 @@ interface BaseEventSession {
|
|
|
1904
1905
|
startTime: string;
|
|
1905
1906
|
endTime: string;
|
|
1906
1907
|
registrationEnd?: string;
|
|
1908
|
+
allowQuickRegister: boolean;
|
|
1907
1909
|
tracks: BaseEventTrack[];
|
|
1908
1910
|
nonSession: boolean;
|
|
1909
1911
|
visible: boolean;
|
|
@@ -3679,6 +3681,7 @@ interface AnnouncementCreateInputs {
|
|
|
3679
3681
|
email?: boolean;
|
|
3680
3682
|
push?: boolean;
|
|
3681
3683
|
filters?: EventAnnouncementFilters | null;
|
|
3684
|
+
includePasses?: boolean;
|
|
3682
3685
|
}
|
|
3683
3686
|
interface AnnouncementUpdateInputs {
|
|
3684
3687
|
title?: string | null;
|
|
@@ -3687,6 +3690,7 @@ interface AnnouncementUpdateInputs {
|
|
|
3687
3690
|
email?: boolean;
|
|
3688
3691
|
push?: boolean;
|
|
3689
3692
|
filters?: EventAnnouncementFilters | null;
|
|
3693
|
+
includePasses?: boolean;
|
|
3690
3694
|
}
|
|
3691
3695
|
interface AnnouncementTranslationUpdateInputs {
|
|
3692
3696
|
title?: string | null;
|
|
@@ -4137,6 +4141,7 @@ interface EventSessionCreateInputs {
|
|
|
4137
4141
|
visible?: boolean;
|
|
4138
4142
|
sortOrder?: number | string | null;
|
|
4139
4143
|
registrationEnabled?: boolean;
|
|
4144
|
+
allowQuickRegister?: boolean;
|
|
4140
4145
|
limit?: number | string | null;
|
|
4141
4146
|
price?: number | string | null;
|
|
4142
4147
|
locationId?: string | null;
|
|
@@ -4165,6 +4170,7 @@ interface EventSessionUpdateInputs {
|
|
|
4165
4170
|
visible?: boolean;
|
|
4166
4171
|
sortOrder?: number | string | null;
|
|
4167
4172
|
registrationEnabled?: boolean;
|
|
4173
|
+
allowQuickRegister?: boolean;
|
|
4168
4174
|
limit?: number | string | null;
|
|
4169
4175
|
price?: number | string | null;
|
|
4170
4176
|
locationId?: string | null;
|