Merge branch '310-dev' of https://dev.sp-tarkov.com/SPT/Server into 310-dev

This commit is contained in:
Dev 2024-07-21 22:09:12 +01:00
commit bdc167a10e
3 changed files with 11 additions and 8 deletions

View File

@ -95,6 +95,8 @@ export class ProfileController
prevexp: 0, prevexp: 0,
nextlvl: 0, nextlvl: 0,
maxlvl: maxlvl, maxlvl: maxlvl,
edition: profile.info?.edition ?? "",
profileId: profile.info?.id ?? "",
sptData: this.profileHelper.getDefaultSptDataObject(), sptData: this.profileHelper.getDefaultSptDataObject(),
}; };
} }
@ -112,6 +114,8 @@ export class ProfileController
: this.profileHelper.getExperience(currlvl), : this.profileHelper.getExperience(currlvl),
nextlvl: nextlvl, nextlvl: nextlvl,
maxlvl: maxlvl, maxlvl: maxlvl,
edition: profile.info?.edition ?? "",
profileId: profile.info?.id ?? "",
sptData: profile.spt, sptData: profile.spt,
}; };
} }

View File

@ -1,3 +1,5 @@
import { Spt } from "../profile/ISptProfile"
export interface IMiniProfile export interface IMiniProfile
{ {
username: string username: string
@ -8,10 +10,7 @@ export interface IMiniProfile
prevexp: number prevexp: number
nextlvl: number nextlvl: number
maxlvl: number maxlvl: number
sptData: SPTData edition: string
} profileId: string
sptData: Spt
export interface SPTData
{
version: string
} }

View File

@ -213,11 +213,11 @@ export interface Spt
/** What mods has this profile loaded at any point in time */ /** What mods has this profile loaded at any point in time */
mods?: ModDetails[] mods?: ModDetails[]
/** What gifts has this profile received and how many */ /** What gifts has this profile received and how many */
receivedGifts: ReceivedGift[] receivedGifts?: ReceivedGift[]
/** item TPLs blacklisted from being sold on flea for this profile */ /** item TPLs blacklisted from being sold on flea for this profile */
blacklistedItemTpls?: string[] blacklistedItemTpls?: string[]
/** key: daily type */ /** key: daily type */
freeRepeatableRefreshUsedCount: Record<string, number> freeRepeatableRefreshUsedCount?: Record<string, number>
} }
export interface ModDetails export interface ModDetails