@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 +2 -2
- package/package.json +11 -11
- package/src/Shared/GetRemoteEvent.lua +1 -1
- package/src/Shared/GetRemoteFunction.lua +1 -1
- package/src/Shared/Interface/Remoting.lua +9 -9
- package/src/Shared/Interface/RemotingMember.lua +1 -1
- package/src/Shared/PromiseGetRemoteEvent.lua +1 -1
- package/src/Shared/PromiseGetRemoteFunction.lua +1 -1
- package/src/Shared/PromiseRemoteEventMixin.lua +1 -1
- package/src/Shared/PromiseRemoteFunctionMixin.lua +1 -2
- package/src/Shared/Realm/RemotingRealmUtils.lua +1 -1
- package/src/Shared/ResourceConstants.lua +3 -3
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
|
|
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 ([
|
|
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
|
|
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
|
|
30
|
-
"@quenty/instanceutils": "13.18.0
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
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.
|
|
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": "
|
|
42
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
43
43
|
}
|
|
@@ -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
|
|
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
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
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
|
|
@@ -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
|
+
})
|