Skip to content

Commit b7239ca

Browse files
chore(develop): sync types to dmgincs/nestjs-api
1 parent 005dacb commit b7239ca

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/common/ProfileDataResponse.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* eslint-disable max-classes-per-file */
2+
import { ActivityTiers } from '~/constants/ActivityTiers';
23

34
export class ProfileDataResponseDto {
45
/** The ID of the member */
@@ -90,6 +91,12 @@ export class ProfileDataResponseDto {
9091

9192
/** Whether the member is a trusted host */
9293
is_trusted_host: boolean;
94+
95+
/** Activity tier based on this month\s XP */
96+
current_activity_tier: ActivityTiers;
97+
98+
/** Activity tier stored from last month\s XP. (This will be active till the member\s current month exceeds previous month\s XP) */
99+
previous_activity_tier: ActivityTiers;
93100
}
94101

95102
export class GetProfileDataDto {

0 commit comments

Comments
 (0)