@quenty/remoting 12.32.0 → 12.32.1

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,10 @@
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.32.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.32.0...@quenty/remoting@12.32.1) (2026-05-30)
7
+
8
+ **Note:** Version bump only for package @quenty/remoting
9
+
6
10
  # [12.32.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.31.2...@quenty/remoting@12.32.0) (2026-05-29)
7
11
 
8
12
  **Note:** Version bump only for package @quenty/remoting
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/remoting",
3
- "version": "12.32.0",
3
+ "version": "12.32.1",
4
4
  "description": "Global remoting retrieval system for Roblox (RemoteFunctions/RemoteEvents)",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -30,19 +30,19 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@quenty/baseobject": "10.13.0",
33
- "@quenty/brio": "14.30.0",
33
+ "@quenty/brio": "14.30.1",
34
34
  "@quenty/enums": "1.3.0",
35
- "@quenty/instanceutils": "13.30.0",
35
+ "@quenty/instanceutils": "13.30.1",
36
36
  "@quenty/loader": "10.11.0",
37
37
  "@quenty/maid": "3.9.0",
38
- "@quenty/promise": "10.18.0",
39
- "@quenty/promisemaid": "5.18.0",
40
- "@quenty/remotefunctionutils": "10.18.0",
41
- "@quenty/rx": "13.28.2",
38
+ "@quenty/promise": "10.18.1",
39
+ "@quenty/promisemaid": "5.18.1",
40
+ "@quenty/remotefunctionutils": "10.18.1",
41
+ "@quenty/rx": "13.28.3",
42
42
  "@quenty/table": "3.9.2"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
47
+ "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
48
48
  }
@@ -229,7 +229,7 @@ end
229
229
 
230
230
  --[=[
231
231
  If on the server, creates a new [RemoteFunction] with the name `memberName` and binds the
232
- invoke. On the client, it waits for the event to exist and then binds to it.
232
+ invoke. On the client, it waits for the function to exist and then binds to it.
233
233
 
234
234
  @param memberName string
235
235
  @param callback any
@@ -322,7 +322,7 @@ function Remoting.DeclareEvent(self: Remoting, memberName: string)
322
322
  end
323
323
 
324
324
  --[=[
325
- Forward declares an event on the remoting object
325
+ Forward declares a method on the remoting object
326
326
 
327
327
  @param memberName string
328
328
  ]=]
@@ -397,7 +397,7 @@ end
397
397
  remoting.Event:FireClient(otherPlayer, ...)
398
398
  ```
399
399
 
400
- Equivalent of [RemoteFunction.FireClient].
400
+ Equivalent of [RemoteEvent:FireClient].
401
401
 
402
402
 
403
403
  @param memberName string
@@ -448,7 +448,7 @@ end
448
448
  --[=[
449
449
  Fires all clients with the event.
450
450
 
451
- Equivalent of [RemoteEvent.FireAllClients].
451
+ Equivalent of [RemoteEvent:FireAllClients].
452
452
 
453
453
  @server
454
454
  @param memberName string
@@ -51,7 +51,7 @@ end
51
51
  Binds to the member.
52
52
 
53
53
  On the server this will create the remote function. On the client
54
- this will connect to the remote event once it's created.
54
+ this will bind to the remote function once it's created.
55
55
 
56
56
  @param callback function
57
57
  @return MaidTask
@@ -117,7 +117,7 @@ function RemotingMember.InvokeServer(self: RemotingMember, ...): Promise.Promise
117
117
  end
118
118
 
119
119
  --[=[
120
- Invokes the client from the server.
120
+ Invokes the server from the client.
121
121
 
122
122
  @client
123
123
  @param ... any