src/highlight/dtos/highlight-options.dto.ts
Properties |
|
Readonly Optional contributor |
Type : string
|
Decorators :
@ApiPropertyOptional({description: 'Highlight User Filter', example: 'RitaDee'})
|
Readonly Optional repo |
Type : string
|
Decorators :
@ApiPropertyOptional({description: 'Highlight Repo Filter', example: 'open-sauced/insights'})
|
Readonly Optional limit |
Type : number
|
Default value : 50
|
Decorators :
@ApiPropertyOptional({minimum: 1, maximum: 1000, default: 10, type: 'integer'})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:30
|
Readonly Optional orderDirection |
Type : OrderDirectionEnum
|
Default value : OrderDirectionEnum.DESC
|
Decorators :
@ApiPropertyOptional({enum: OrderDirectionEnum, enumName: 'OrderDirectionEnum', default: undefined})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:35
|
Readonly Optional page |
Type : number
|
Default value : 1
|
Decorators :
@ApiPropertyOptional({minimum: 1, default: 1, type: 'integer'})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:17
|
Readonly Optional prev_days_start_date |
Type : number
|
Default value : 0
|
Decorators :
@ApiPropertyOptional({description: 'Number of days in the past to start range block', default: 0, type: 'integer'})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:57
|
Readonly Optional range |
Type : number
|
Default value : 30
|
Decorators :
@ApiPropertyOptional({description: 'Range in days', default: 30, type: 'integer'})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:46
|
import { ApiPropertyOptional, PickType } from "@nestjs/swagger";
import { IsOptional, IsString } from "class-validator";
import { PageOptionsDto } from "../../common/dtos/page-options.dto";
import { DbUserHighlightReaction } from "../../user/entities/user-highlight-reaction.entity";
export class HighlightOptionsDto extends PageOptionsDto {
@ApiPropertyOptional({
description: "Highlight Repo Filter",
example: "open-sauced/insights",
})
@IsString()
@IsOptional()
readonly repo?: string;
@ApiPropertyOptional({
description: "Highlight User Filter",
example: "RitaDee",
})
@IsString()
@IsOptional()
readonly contributor?: string;
}
export class DbUserHighlightReactionResponse extends PickType(DbUserHighlightReaction, ["emoji_id", "reaction_count"]) {
@ApiPropertyOptional({
description: "Usernames of users who reacted with this emoji",
type: "string",
example: ["RitaDee", "diivi"],
isArray: true,
})
@IsString({ each: true })
@IsOptional()
readonly reaction_users?: string[];
}