Skip to content

Commit de693d5

Browse files
chore(develop): sync types to dmgincs/nestjs-api
1 parent 4ccc73d commit de693d5

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/admin/IssuedStrikeResponse.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable max-classes-per-file */
22

3-
export class IssuedStrikeMemberDto {
3+
export class IssuedStrikeMemberDro {
44
/** The ID of the member */
55
member_id: number;
66

@@ -15,8 +15,11 @@ export class IssuedStrikeResponseDro {
1515
/** The ID of the strike */
1616
strike_id: number;
1717

18+
/** The ID of the issued strike */
19+
issued_strike_id: number;
20+
1821
/** The member who received the strike */
19-
member: IssuedStrikeMemberDto;
22+
member: IssuedStrikeMemberDro;
2023

2124
/** The amount of points the member received for the strike */
2225
points: number | null;
@@ -28,7 +31,7 @@ export class IssuedStrikeResponseDro {
2831
moderator_content: string | null;
2932

3033
/** The member who issued the strike */
31-
issuer: IssuedStrikeMemberDto;
34+
issuer: IssuedStrikeMemberDro;
3235

3336
/** The date at which the strike was issued */
3437
issued_at: Date;

0 commit comments

Comments
 (0)