@quenty/deathreport 10.21.2 → 10.21.3

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 CHANGED
@@ -3,6 +3,14 @@
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.21.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.21.2...@quenty/deathreport@10.21.3) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/deathreport
9
+
10
+
11
+
12
+
13
+
6
14
  ## [10.21.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.21.0...@quenty/deathreport@10.21.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/deathreport",
3
- "version": "10.21.2",
3
+ "version": "10.21.3",
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": "^10.8.2",
33
- "@quenty/binder": "^14.19.2",
34
- "@quenty/characterutils": "^12.18.2",
32
+ "@quenty/baseobject": "^10.8.3",
33
+ "@quenty/binder": "^14.19.3",
34
+ "@quenty/characterutils": "^12.18.3",
35
35
  "@quenty/humanoidkillerutils": "^2.3.3",
36
- "@quenty/loader": "^10.8.2",
37
- "@quenty/maid": "^3.4.2",
38
- "@quenty/playerhumanoidbinder": "^14.19.2",
39
- "@quenty/remoting": "^12.18.2",
40
- "@quenty/rx": "^13.17.2",
41
- "@quenty/rxbinderutils": "^14.19.2",
42
- "@quenty/servicebag": "^11.11.3",
43
- "@quenty/signal": "^7.10.2",
44
- "@quenty/table": "^3.7.3"
36
+ "@quenty/loader": "^10.8.3",
37
+ "@quenty/maid": "^3.4.3",
38
+ "@quenty/playerhumanoidbinder": "^14.19.3",
39
+ "@quenty/remoting": "^12.18.3",
40
+ "@quenty/rx": "^13.17.3",
41
+ "@quenty/rxbinderutils": "^14.19.3",
42
+ "@quenty/servicebag": "^11.11.4",
43
+ "@quenty/signal": "^7.10.3",
44
+ "@quenty/table": "^3.7.4"
45
45
  },
46
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
46
+ "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
47
47
  }
@@ -30,7 +30,7 @@ export type DeathReportService = typeof(setmetatable(
30
30
  _reportProcessor: DeathReportProcessor.DeathReportProcessor,
31
31
  _weaponDataRetrievers: { GetWeaponData },
32
32
  },
33
- { __index = DeathReportService }
33
+ {} :: typeof({ __index = DeathReportService })
34
34
  ))
35
35
 
36
36
  export type GetWeaponData = (humanoid: Humanoid) -> DeathReportUtils.WeaponData?
@@ -27,8 +27,8 @@ export type DeathReportProcessor = typeof(setmetatable(
27
27
  _characterKillerSubTable: ObservableSubscriptionTable.ObservableSubscriptionTable<DeathReportUtils.DeathReport>,
28
28
  _characterDeathSubTable: ObservableSubscriptionTable.ObservableSubscriptionTable<DeathReportUtils.DeathReport>,
29
29
  },
30
- { __index = DeathReportProcessor }
31
- ))
30
+ {} :: typeof({ __index = DeathReportProcessor })
31
+ )) & BaseObject.BaseObject
32
32
 
33
33
  function DeathReportProcessor.new(): DeathReportProcessor
34
34
  local self = setmetatable(BaseObject.new() :: any, DeathReportProcessor)