@bondsports/types 2.2.80 → 2.2.81
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DurationTypeEnum, DurationUnitTypesEnum, FrequencyEnum } from '../types/enums/reservation.enums';
|
2
2
|
import { MaintenanceDto } from './maintenance.dto';
|
3
|
-
import { SlotDto } from './slot.dto';
|
3
|
+
import { DraftSlotDto, SlotDto } from './slot.dto';
|
4
4
|
declare class BaseSeriesDto {
|
5
5
|
startDate: string;
|
6
6
|
startTime?: string;
|
@@ -27,6 +27,6 @@ export declare class DraftSeriesDto extends BaseSeriesDto {
|
|
27
27
|
id?: string;
|
28
28
|
reservationId?: string;
|
29
29
|
segmentId?: string;
|
30
|
-
slots?:
|
30
|
+
slots?: DraftSlotDto[];
|
31
31
|
}
|
32
32
|
export {};
|