@quenty/resetservice 11.19.0 → 11.19.1-canary.545.2374fb2.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 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
+ ## [11.19.1-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.19.0...@quenty/resetservice@11.19.1-canary.545.2374fb2.0) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [11.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.18.2...@quenty/resetservice@11.19.0) (2025-04-02)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/resetservice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/resetservice",
3
- "version": "11.19.0",
3
+ "version": "11.19.1-canary.545.2374fb2.0",
4
4
  "description": "Handles reset requests since Roblox's reset system doesn't handle ragdolls correctly",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,17 +26,17 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/coreguiutils": "^10.10.1",
30
- "@quenty/loader": "^10.8.0",
31
- "@quenty/maid": "^3.4.0",
32
- "@quenty/playerutils": "^8.17.0",
33
- "@quenty/promise": "^10.10.1",
34
- "@quenty/remoting": "^12.18.0",
35
- "@quenty/statestack": "^14.18.0",
36
- "@quenty/table": "^3.7.1"
29
+ "@quenty/coreguiutils": "10.10.2-canary.545.2374fb2.0",
30
+ "@quenty/loader": "10.8.1-canary.545.2374fb2.0",
31
+ "@quenty/maid": "3.4.1-canary.545.2374fb2.0",
32
+ "@quenty/playerutils": "8.17.1-canary.545.2374fb2.0",
33
+ "@quenty/promise": "10.10.2-canary.545.2374fb2.0",
34
+ "@quenty/remoting": "12.18.1-canary.545.2374fb2.0",
35
+ "@quenty/statestack": "14.18.1-canary.545.2374fb2.0",
36
+ "@quenty/table": "3.7.2-canary.545.2374fb2.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "e8ea56930e65322fcffc05a1556d5df988068f0b"
41
+ "gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
42
42
  }
@@ -41,7 +41,7 @@ end
41
41
  @param promiseReset function -- Reset provider
42
42
  @return MaidTask
43
43
  ]=]
44
- function ResetService:PushResetProvider(promiseReset)
44
+ function ResetService:PushResetProvider(promiseReset: () -> ())
45
45
  assert(type(promiseReset) == "function", "Bad promiseReset")
46
46
 
47
47
  return self._resetProviderStack:PushState(promiseReset)