2023-10-19 19:21:17 +02:00
|
|
|
import { Skills } from "@spt-aki/models/eft/common/tables/IBotBase";
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
export interface IPlayerIncrementSkillLevelRequestData
|
|
|
|
{
|
|
|
|
_id: string
|
|
|
|
experience: number
|
|
|
|
quests: any[]
|
|
|
|
ragFairOffers: any[]
|
|
|
|
builds: any[]
|
|
|
|
items: Items
|
|
|
|
production: Production
|
|
|
|
skills: Skills
|
|
|
|
traderRelations: TraderRelations
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Items
|
|
|
|
{
|
|
|
|
new: any[]
|
|
|
|
change: any[]
|
|
|
|
del: any[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Production
|
|
|
|
{ }
|
|
|
|
|
|
|
|
export interface TraderRelations
|
|
|
|
{ }
|