@bondsports/types 2.3.31-team-c-4 → 2.3.31-team-c-6
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.
@@ -234,6 +234,7 @@ export interface IAttendeeDataToNotify {
|
|
234
234
|
}
|
235
235
|
export interface IEventInSchedule {
|
236
236
|
eventId: number;
|
237
|
+
parentSessionId: number;
|
237
238
|
programId: number;
|
238
239
|
sessionId: number;
|
239
240
|
eventEndDate: string;
|
@@ -241,6 +242,12 @@ export interface IEventInSchedule {
|
|
241
242
|
eventName: string;
|
242
243
|
eventStartDate: string;
|
243
244
|
eventStartTime: string;
|
245
|
+
eventTimezone: string;
|
246
|
+
isPunchCard: boolean;
|
247
|
+
maxFemaleParticipants: number;
|
248
|
+
maxMaleParticipants: number;
|
249
|
+
maxParticipants: number;
|
250
|
+
parentSessionName: string;
|
244
251
|
programName: string;
|
245
252
|
programType: ProgramTypesEnum;
|
246
253
|
sessionName: string;
|