From 09b57acf922857af982f45ede43b5a460d49f3d5 Mon Sep 17 00:00:00 2001 From: iGameCreep Date: Sat, 1 Mar 2025 13:26:26 +0100 Subject: [PATCH 1/2] Fix incorrect var name --- .../pacifista-api/server/players/sync/dtos/PlayerDataDTO.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } } From 23087996aa608d38e5c194ecd0b0c42306a07757 Mon Sep 17 00:00:00 2001 From: iGameCreep Date: Sat, 1 Mar 2025 13:28:38 +0100 Subject: [PATCH 2/2] v0.4.5 --- package-lock.json | 4 ++-- package.json | 2 +- projects/funixproductions-requests/package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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",