@quenty/remoting 12.19.0-canary.ae8d76d.0 → 12.19.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,7 +3,7 @@
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
- # [12.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.18.3...@quenty/remoting@12.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [12.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.18.3...@quenty/remoting@12.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
@@ -13,7 +13,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
13
13
 
14
14
  ### Features
15
15
 
16
- * Add even more types ([ae8d76d](https://github.com/Quenty/NevermoreEngine/commit/ae8d76d996594e017ac4bfa19f3c064ebe307cd8))
16
+ * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
17
17
 
18
18
 
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/remoting",
3
- "version": "12.19.0-canary.ae8d76d.0",
3
+ "version": "12.19.0",
4
4
  "description": "Global remoting retrieval system for Roblox (RemoteFunctions/RemoteEvents)",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,18 +26,18 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
30
- "@quenty/instanceutils": "13.18.0-canary.ae8d76d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/promisemaid": "5.11.0-canary.ae8d76d.0",
35
- "@quenty/remotefunctionutils": "10.11.0-canary.ae8d76d.0",
36
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
37
- "@quenty/table": "3.7.4"
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/instanceutils": "^13.18.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/maid": "^3.5.0",
33
+ "@quenty/promise": "^10.11.0",
34
+ "@quenty/promisemaid": "^5.11.0",
35
+ "@quenty/remotefunctionutils": "^10.11.0",
36
+ "@quenty/rx": "^13.18.0",
37
+ "@quenty/table": "^3.8.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
42
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
43
43
  }
@@ -95,4 +95,4 @@ else -- RunService:IsClient()
95
95
 
96
96
  error("Could not find remote event " .. name)
97
97
  end
98
- end
98
+ end
@@ -98,4 +98,4 @@ else -- RunService:IsClient()
98
98
 
99
99
  error("Could not find remote function " .. name)
100
100
  end
101
- end
101
+ end
@@ -11,18 +11,18 @@ local require = require(script.Parent.loader).load(script)
11
11
  local Players = game:GetService("Players")
12
12
  local RunService = game:GetService("RunService")
13
13
 
14
+ local Brio = require("Brio")
14
15
  local Maid = require("Maid")
16
+ local Observable = require("Observable")
15
17
  local Promise = require("Promise")
16
- local promiseChild = require("promiseChild")
17
18
  local PromiseUtils = require("PromiseUtils")
18
19
  local RemoteFunctionUtils = require("RemoteFunctionUtils")
19
20
  local RemotingMember = require("RemotingMember")
20
- local RemotingRealms = require("RemotingRealms")
21
21
  local RemotingRealmUtils = require("RemotingRealmUtils")
22
+ local RemotingRealms = require("RemotingRealms")
22
23
  local RxBrioUtils = require("RxBrioUtils")
23
24
  local RxInstanceUtils = require("RxInstanceUtils")
24
- local Observable = require("Observable")
25
- local Brio = require("Brio")
25
+ local promiseChild = require("promiseChild")
26
26
 
27
27
  local RAW_MEMBERS = {
28
28
  _name = true,
@@ -698,11 +698,11 @@ function Remoting._observeRemoteEventBrio(self: Remoting, memberName: string)
698
698
 
699
699
  return self:_observeFolderBrio():Pipe({
700
700
  RxBrioUtils.switchMapBrio(function(item)
701
- if self._useDummyObject then
702
- return RxInstanceUtils.observeLastNamedChildBrio(item, "BindableEvent", remoteFunctionName)
703
- else
704
- return RxInstanceUtils.observeLastNamedChildBrio(item, "RemoteEvent", remoteFunctionName)
705
- end
701
+ if self._useDummyObject then
702
+ return RxInstanceUtils.observeLastNamedChildBrio(item, "BindableEvent", remoteFunctionName)
703
+ else
704
+ return RxInstanceUtils.observeLastNamedChildBrio(item, "RemoteEvent", remoteFunctionName)
705
+ end
706
706
  end) :: any,
707
707
  })
708
708
  end
@@ -223,4 +223,4 @@ function RemotingMember.FireClient(self: RemotingMember, player: Player, ...)
223
223
  self._remoting:FireClient(self._memberName, player, ...)
224
224
  end
225
225
 
226
- return RemotingMember
226
+ return RemotingMember
@@ -46,4 +46,4 @@ else -- RunService:IsClient()
46
46
  resolve(GetRemoteEvent(name))
47
47
  end)
48
48
  end
49
- end
49
+ end
@@ -47,4 +47,4 @@ else -- RunService:IsClient()
47
47
  resolve(GetRemoteFunction(name))
48
48
  end)
49
49
  end
50
- end
50
+ end
@@ -56,4 +56,4 @@ function PromiseRemoteEventMixin:PromiseRemoteEvent()
56
56
  return self._maid:GivePromise(promiseChild(self._obj, self._remoteEventName))
57
57
  end
58
58
 
59
- return PromiseRemoteEventMixin
59
+ return PromiseRemoteEventMixin
@@ -56,5 +56,4 @@ function PromiseRemoteFunctionMixin:PromiseRemoteFunction()
56
56
  return self._maid:GivePromise(promiseChild(self._obj, self._remoteFunctionName))
57
57
  end
58
58
 
59
-
60
- return PromiseRemoteFunctionMixin
59
+ return PromiseRemoteFunctionMixin
@@ -25,4 +25,4 @@ function RemotingRealmUtils.inferRemotingRealm(): RemotingRealms.RemotingRealm
25
25
  end
26
26
  end
27
27
 
28
- return RemotingRealmUtils
28
+ return RemotingRealmUtils
@@ -10,6 +10,6 @@ local require = require(script.Parent.loader).load(script)
10
10
  local Table = require("Table")
11
11
 
12
12
  return Table.readonly({
13
- REMOTE_EVENT_STORAGE_NAME = "RemoteEvents" :: "RemoteEvents";
14
- REMOTE_FUNCTION_STORAGE_NAME = "RemoteFunctions" :: "RemoteFunctions";
15
- })
13
+ REMOTE_EVENT_STORAGE_NAME = "RemoteEvents" :: "RemoteEvents",
14
+ REMOTE_FUNCTION_STORAGE_NAME = "RemoteFunctions" :: "RemoteFunctions",
15
+ })