Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit a50983b

Browse files
authored
v0.5.5: Fix incorrect var name (#26)
* Fix incorrect var name * v0.4.5
1 parent 7caa54f commit a50983b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@funixproductions/angular-core",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Package used in all FunixProductions Angular projects",
55
"scripts": {
66
"ng": "ng",

projects/funixproductions-requests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@funixproductions/funixproductions-requests",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Package used in all FunixProductions Angular projects",
55
"peerDependencies": {
66
"@angular/common": "^19.1.7",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import {ApiDTO} from '../../../../../core/dtos/api-dto';
22

33
export class PlayerDataDTO extends ApiDTO {
4-
public minecraftUuid: string;
4+
public playerOwnerUuid: string;
55

6-
constructor(minecraftUuid: string) {
6+
constructor(playerOwnerUuid: string) {
77
super();
8-
this.minecraftUuid = minecraftUuid;
8+
this.playerOwnerUuid = playerOwnerUuid;
99
}
1010
}

0 commit comments

Comments
 (0)