diff --git a/package-lock.json b/package-lock.json index c508883..5c32791 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@funixproductions/angular-core", - "version": "0.4.4", + "version": "0.4.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@funixproductions/angular-core", - "version": "0.4.4", + "version": "0.4.5", "dependencies": { "@angular/animations": "^19.1.7", "@angular/common": "^19.1.7", diff --git a/package.json b/package.json index 894a4c2..8cf055b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@funixproductions/angular-core", - "version": "0.4.4", + "version": "0.4.5", "description": "Package used in all FunixProductions Angular projects", "scripts": { "ng": "ng", diff --git a/projects/funixproductions-requests/package.json b/projects/funixproductions-requests/package.json index 6887241..0f4b409 100644 --- a/projects/funixproductions-requests/package.json +++ b/projects/funixproductions-requests/package.json @@ -1,6 +1,6 @@ { "name": "@funixproductions/funixproductions-requests", - "version": "0.4.4", + "version": "0.4.5", "description": "Package used in all FunixProductions Angular projects", "peerDependencies": { "@angular/common": "^19.1.7", diff --git a/projects/funixproductions-requests/src/lib/services/pacifista-api/server/players/sync/dtos/PlayerDataDTO.ts b/projects/funixproductions-requests/src/lib/services/pacifista-api/server/players/sync/dtos/PlayerDataDTO.ts index 048db7a..4fe07cd 100644 --- a/projects/funixproductions-requests/src/lib/services/pacifista-api/server/players/sync/dtos/PlayerDataDTO.ts +++ b/projects/funixproductions-requests/src/lib/services/pacifista-api/server/players/sync/dtos/PlayerDataDTO.ts @@ -1,10 +1,10 @@ import {ApiDTO} from '../../../../../core/dtos/api-dto'; export class PlayerDataDTO extends ApiDTO { - public minecraftUuid: string; + public playerOwnerUuid: string; - constructor(minecraftUuid: string) { + constructor(playerOwnerUuid: string) { super(); - this.minecraftUuid = minecraftUuid; + this.playerOwnerUuid = playerOwnerUuid; } }