@quenty/resetservice 11.20.0-canary.ae8d76d.0 → 11.20.1-canary.39d0eda.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,12 +3,20 @@
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.20.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.19.3...@quenty/resetservice@11.20.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [11.20.1-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.20.0...@quenty/resetservice@11.20.1-canary.39d0eda.0) (2025-08-29)
7
+
8
+ **Note:** Version bump only for package @quenty/resetservice
9
+
10
+
11
+
12
+
13
+
14
+ # [11.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.19.3...@quenty/resetservice@11.20.0) (2025-05-10)
7
15
 
8
16
 
9
17
  ### Features
10
18
 
11
- * Add even more types ([ae8d76d](https://github.com/Quenty/NevermoreEngine/commit/ae8d76d996594e017ac4bfa19f3c064ebe307cd8))
19
+ * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
12
20
 
13
21
 
14
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/resetservice",
3
- "version": "11.20.0-canary.ae8d76d.0",
3
+ "version": "11.20.1-canary.39d0eda.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.11.0-canary.ae8d76d.0",
30
- "@quenty/loader": "10.8.3",
31
- "@quenty/maid": "3.4.3",
32
- "@quenty/playerutils": "8.18.0-canary.ae8d76d.0",
33
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/remoting": "12.19.0-canary.ae8d76d.0",
35
- "@quenty/statestack": "14.19.0-canary.ae8d76d.0",
36
- "@quenty/table": "3.7.4"
29
+ "@quenty/coreguiutils": "10.11.1-canary.39d0eda.0",
30
+ "@quenty/loader": "10.9.0",
31
+ "@quenty/maid": "3.5.0",
32
+ "@quenty/playerutils": "8.18.1-canary.39d0eda.0",
33
+ "@quenty/promise": "10.11.1-canary.39d0eda.0",
34
+ "@quenty/remoting": "12.19.1-canary.39d0eda.0",
35
+ "@quenty/statestack": "14.19.1-canary.39d0eda.0",
36
+ "@quenty/table": "3.8.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
41
+ "gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
42
42
  }
@@ -15,8 +15,8 @@ local ReplicatedStorage = game:GetService("ReplicatedStorage")
15
15
 
16
16
  local CoreGuiUtils = require("CoreGuiUtils")
17
17
  local Maid = require("Maid")
18
- local Remoting = require("Remoting")
19
18
  local Promise = require("Promise")
19
+ local Remoting = require("Remoting")
20
20
 
21
21
  local RETRY_ATTEMPTS = 3
22
22
  local INITIAL_WAIT_TIME = 1
@@ -77,4 +77,4 @@ function ResetServiceClient:Destroy()
77
77
  (self :: any)._maid = nil
78
78
  end
79
79
 
80
- return ResetServiceClient
80
+ return ResetServiceClient
@@ -9,11 +9,11 @@ local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local ReplicatedStorage = game:GetService("ReplicatedStorage")
11
11
 
12
- local Remoting = require("Remoting")
13
12
  local Maid = require("Maid")
14
- local StateStack = require("StateStack")
15
13
  local PlayerUtils = require("PlayerUtils")
16
14
  local Promise = require("Promise")
15
+ local Remoting = require("Remoting")
16
+ local StateStack = require("StateStack")
17
17
 
18
18
  local ResetService = {}
19
19
  ResetService.ServiceName = "ResetService"
@@ -67,4 +67,4 @@ function ResetService:Destroy()
67
67
  self._maid:DoCleaning()
68
68
  end
69
69
 
70
- return ResetService
70
+ return ResetService