1
- import { ResourceName , RESOURCES } from './resources' ;
1
+ import { ResourceName } from './resources' ;
2
2
import { ApiProperty , ApiPropertyOptional } from '@nestjs/swagger' ;
3
3
import { VARIABLES } from './variables' ;
4
4
import { SYSTEM_TYPES , SystemTypeName } from './system-types' ;
5
5
import { SchemaObject } from '@nestjs/swagger/dist/interfaces/open-api-spec.interface' ;
6
- import { ArrayMaxSize , ArrayMinSize , IsInt } from 'class-validator' ;
7
6
8
7
export type DeepNumberKeys < T > = T extends Record < string , any > ? {
9
8
[ K in keyof T ] -?: T [ K ] extends object ? `${K & string } .${DeepNumberKeys < T [ K ] > } ` : T [ K ] extends number ? K & string : never ;
@@ -126,11 +125,18 @@ export class Resource {
126
125
credit_value ?: number ;
127
126
}
128
127
129
- export const RESOURCES_SCHEMA_PROPERTIES = Object . fromEntries ( Object . keys ( RESOURCES ) . map ( id => [ id , {
130
- type : 'integer' ,
131
- default : 0 ,
132
- minimum : 0 ,
133
- } satisfies SchemaObject ] ) ) ;
128
+ export const RESOURCES_SCHEMA_PROPERTIES = {
129
+ example : {
130
+ energy : 10 ,
131
+ minerals : 20 ,
132
+ } ,
133
+ type : 'object' ,
134
+ additionalProperties : {
135
+ type : 'integer' ,
136
+ default : 0 ,
137
+ minimum : 0 ,
138
+ } ,
139
+ } ;
134
140
135
141
export class SystemType {
136
142
@ApiProperty ( )
@@ -175,13 +181,13 @@ export class SystemUpgrade {
175
181
176
182
@ApiProperty ( {
177
183
description : 'The cost to upgrade the system, specified in various resources.' ,
178
- properties : RESOURCES_SCHEMA_PROPERTIES ,
184
+ ... RESOURCES_SCHEMA_PROPERTIES ,
179
185
} )
180
186
cost : Partial < Record < ResourceName , number > > ;
181
187
182
188
@ApiProperty ( {
183
189
description : 'The ongoing upkeep of the system, specified in various resources, required to maintain its benefits.' ,
184
- properties : RESOURCES_SCHEMA_PROPERTIES ,
190
+ ... RESOURCES_SCHEMA_PROPERTIES ,
185
191
} )
186
192
upkeep : Partial < Record < ResourceName , number > > ;
187
193
@@ -197,19 +203,19 @@ export class Building {
197
203
198
204
@ApiProperty ( {
199
205
description : 'The cost to construct the building, specified in various resources.' ,
200
- properties : RESOURCES_SCHEMA_PROPERTIES ,
206
+ ... RESOURCES_SCHEMA_PROPERTIES ,
201
207
} )
202
208
cost : Partial < Record < ResourceName , number > > ;
203
209
204
210
@ApiProperty ( {
205
211
description : 'The ongoing upkeep of the building, specified in various resources, required to maintain operation.' ,
206
- properties : RESOURCES_SCHEMA_PROPERTIES ,
212
+ ... RESOURCES_SCHEMA_PROPERTIES ,
207
213
} )
208
214
upkeep : Partial < Record < ResourceName , number > > ;
209
215
210
216
@ApiProperty ( {
211
217
description : 'The production output of the building, specified in various resources, that it contributes to the empire\'s economy.' ,
212
- properties : RESOURCES_SCHEMA_PROPERTIES ,
218
+ ... RESOURCES_SCHEMA_PROPERTIES ,
213
219
} )
214
220
production : Partial < Record < ResourceName , number > > ;
215
221
}
@@ -230,19 +236,19 @@ export class District {
230
236
231
237
@ApiProperty ( {
232
238
description : 'The cost to establish the district, specified in various resources.' ,
233
- properties : RESOURCES_SCHEMA_PROPERTIES ,
239
+ ... RESOURCES_SCHEMA_PROPERTIES ,
234
240
} )
235
241
cost : Partial < Record < ResourceName , number > > ;
236
242
237
243
@ApiProperty ( {
238
244
description : 'The ongoing upkeep of the district, specified in various resources, required to maintain its benefits.' ,
239
- properties : RESOURCES_SCHEMA_PROPERTIES ,
245
+ ... RESOURCES_SCHEMA_PROPERTIES ,
240
246
} )
241
247
upkeep : Partial < Record < ResourceName , number > > ;
242
248
243
249
@ApiProperty ( {
244
250
description : 'The production output of the district, specified in various resources, contributing to the empire\'s economy.' ,
245
- properties : RESOURCES_SCHEMA_PROPERTIES ,
251
+ ... RESOURCES_SCHEMA_PROPERTIES ,
246
252
} )
247
253
production : Partial < Record < ResourceName , number > > ;
248
254
}
0 commit comments