@bondsports/types 2.2.279-team-b-3 → 2.2.279-team-b-4
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.
@@ -11,7 +11,7 @@ import { CreateOrUpdateResourceSettingDto } from '../../resource-settings/dto/cr
|
|
11
11
|
import { GenderEnum, LevelOfPlayEnum, OrderByEnum, ProgramSeasonTypesEnum, ProgramTypesEnum, PublishingStatusEnum, RegistrationConstraintPeriodTypeEnum, ResourceNameTypeEnum, SportsEnum } from '../../services/enums.service';
|
12
12
|
import { SimpleResourceDto } from '../../resources/dto/resource.dto';
|
13
13
|
import { IGetProgramSeasonChildrenFilters, IGetProgramSeasonsChildrenOptions } from '../types/interfaces/program-season.interfaces';
|
14
|
-
import { SegmentSortByFieldsEnum } from '../types/enums/program-season.enums';
|
14
|
+
import { EventSortByFieldsEnum, SegmentSortByFieldsEnum } from '../types/enums/program-season.enums';
|
15
15
|
import { BondBaseEntity } from '../../entity/BondBaseEntity';
|
16
16
|
import { ProgramSeason } from '../entities/ProgramSeason';
|
17
17
|
export declare class FindSessionsFiltersDto {
|
@@ -267,10 +267,10 @@ export declare class GetPaginatedSessionQueryDto<T extends BondBaseEntity> exten
|
|
267
267
|
endDate?: string;
|
268
268
|
}
|
269
269
|
export declare class GetPaginatedSegmentsQueryDto extends GetPaginatedSessionQueryDto<ProgramSeason> {
|
270
|
-
|
270
|
+
orderBy?: SegmentSortByFieldsEnum;
|
271
271
|
order?: OrderByEnum;
|
272
272
|
}
|
273
273
|
export declare class GetPaginatedEventsQueryDto extends GetPaginatedSessionQueryDto<Event> {
|
274
|
-
|
274
|
+
orderBy?: EventSortByFieldsEnum;
|
275
275
|
order?: OrderByEnum;
|
276
276
|
}
|
@@ -44,7 +44,7 @@ export interface IGetProgramSeasonChildrenFilters<T extends BondBaseEntity> {
|
|
44
44
|
attendeeId?: number;
|
45
45
|
startDate?: string;
|
46
46
|
endDate?: string;
|
47
|
-
|
47
|
+
orderBy?: keyof T;
|
48
48
|
order?: OrderByEnum;
|
49
49
|
}
|
50
50
|
export interface IGetProgramSeasonsChildrenOptions extends IPagination {
|