@quenty/deathreport 10.29.3 → 10.30.0-canary.882056f.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +15 -15
- package/src/Client/DeathReportServiceClient.lua +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [10.30.0-canary.882056f.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.29.3...@quenty/deathreport@10.30.0-canary.882056f.0) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Update declarations and README.md ([882056f](https://github.com/Quenty/NevermoreEngine/commit/882056f4c012f9855a0581750968993fb18241ed))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [10.29.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.29.2...@quenty/deathreport@10.29.3) (2025-12-28)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/deathreport",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.30.0-canary.882056f.0",
|
|
4
4
|
"description": "Death report service which will track the deaths of players",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,19 +29,19 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@quenty/baseobject": "
|
|
33
|
-
"@quenty/binder": "
|
|
34
|
-
"@quenty/characterutils": "
|
|
35
|
-
"@quenty/humanoidkillerutils": "
|
|
36
|
-
"@quenty/loader": "
|
|
37
|
-
"@quenty/maid": "
|
|
38
|
-
"@quenty/playerhumanoidbinder": "
|
|
39
|
-
"@quenty/remoting": "
|
|
40
|
-
"@quenty/rx": "
|
|
41
|
-
"@quenty/rxbinderutils": "
|
|
42
|
-
"@quenty/servicebag": "
|
|
43
|
-
"@quenty/signal": "
|
|
44
|
-
"@quenty/table": "
|
|
32
|
+
"@quenty/baseobject": "10.9.0",
|
|
33
|
+
"@quenty/binder": "14.25.3",
|
|
34
|
+
"@quenty/characterutils": "12.22.2",
|
|
35
|
+
"@quenty/humanoidkillerutils": "2.3.3",
|
|
36
|
+
"@quenty/loader": "10.9.0",
|
|
37
|
+
"@quenty/maid": "3.5.0",
|
|
38
|
+
"@quenty/playerhumanoidbinder": "14.25.3",
|
|
39
|
+
"@quenty/remoting": "12.21.2",
|
|
40
|
+
"@quenty/rx": "13.20.0",
|
|
41
|
+
"@quenty/rxbinderutils": "14.25.3",
|
|
42
|
+
"@quenty/servicebag": "11.13.2",
|
|
43
|
+
"@quenty/signal": "7.11.1",
|
|
44
|
+
"@quenty/table": "3.8.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "882056f4c012f9855a0581750968993fb18241ed"
|
|
47
47
|
}
|
|
@@ -56,7 +56,7 @@ end
|
|
|
56
56
|
@param player Player
|
|
57
57
|
@return Observable<DeathReport>
|
|
58
58
|
]=]
|
|
59
|
-
function DeathReportServiceClient:ObservePlayerKillerReports(player)
|
|
59
|
+
function DeathReportServiceClient:ObservePlayerKillerReports(player: Player)
|
|
60
60
|
assert(typeof(player) == "Instance" and player:IsA("Player"), "Bad player")
|
|
61
61
|
|
|
62
62
|
return self._reportProcessor:ObservePlayerKillerReports(player)
|
|
@@ -68,7 +68,7 @@ end
|
|
|
68
68
|
@param player Player
|
|
69
69
|
@return Observable<DeathReport>
|
|
70
70
|
]=]
|
|
71
|
-
function DeathReportServiceClient:ObservePlayerDeathReports(player)
|
|
71
|
+
function DeathReportServiceClient:ObservePlayerDeathReports(player: Player)
|
|
72
72
|
assert(typeof(player) == "Instance" and player:IsA("Player"), "Bad player")
|
|
73
73
|
|
|
74
74
|
return self._reportProcessor:ObservePlayerDeathReports(player)
|
|
@@ -80,7 +80,7 @@ end
|
|
|
80
80
|
@param humanoid Humanoid
|
|
81
81
|
@return Observable<DeathReport>
|
|
82
82
|
]=]
|
|
83
|
-
function DeathReportServiceClient:ObserveHumanoidKillerReports(humanoid)
|
|
83
|
+
function DeathReportServiceClient:ObserveHumanoidKillerReports(humanoid: Humanoid)
|
|
84
84
|
assert(typeof(humanoid) == "Instance" and humanoid:IsA("Humanoid"), "Bad humanoid")
|
|
85
85
|
|
|
86
86
|
return self._reportProcessor:ObserveHumanoidKillerReports(humanoid)
|
|
@@ -92,7 +92,7 @@ end
|
|
|
92
92
|
@param humanoid Humanoid
|
|
93
93
|
@return Observable<DeathReport>
|
|
94
94
|
]=]
|
|
95
|
-
function DeathReportServiceClient:ObserveHumanoidDeathReports(humanoid)
|
|
95
|
+
function DeathReportServiceClient:ObserveHumanoidDeathReports(humanoid: Humanoid)
|
|
96
96
|
assert(typeof(humanoid) == "Instance" and humanoid:IsA("Humanoid"), "Bad humanoid")
|
|
97
97
|
|
|
98
98
|
return self._reportProcessor:ObserveHumanoidDeathReports(humanoid)
|