File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 3
3
"license" : " MIT" ,
4
4
"private" : false ,
5
5
"description" : " The official SDK for HellHub API. Filter and collect data with full type safety out of the box." ,
6
- "version" : " 1.3.1 " ,
6
+ "version" : " 1.4.0 " ,
7
7
"main" : " dist/index.mjs" ,
8
8
"types" : " dist/index.d.ts" ,
9
9
"keywords" : [
Original file line number Diff line number Diff line change @@ -174,15 +174,24 @@ export interface Reward extends RemoteEntity {
174
174
assignment ?: Assignment ;
175
175
}
176
176
177
+ export interface AssignmentTask extends Entity {
178
+ type : number ;
179
+ values : number [ ] ;
180
+ valueTypes : number [ ] ;
181
+ assignmentId : number ;
182
+ assignment ?: Assignment ;
183
+ }
184
+
177
185
export interface Assignment extends RemoteEntity {
178
186
type : number ;
179
187
title : string ;
180
188
briefing : string ;
181
189
reward ?: Reward ;
182
190
rewardId : number ;
183
- progress : number ;
191
+ progress : number [ ] ;
184
192
expiresAt : string ;
185
193
description : string ;
194
+ tasks : AssignmentTask [ ] ;
186
195
}
187
196
188
197
export interface Biome extends Entity {
You can’t perform that action at this time.
0 commit comments