@quenty/remoting 12.24.0 → 12.25.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
+ # [12.25.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.24.0...@quenty/remoting@12.25.0) (2026-01-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add SimpleEnum package and interface, to simplify enum usage across Nevermore ([d3040d7](https://github.com/Quenty/NevermoreEngine/commit/d3040d7a07ae7b2586bb982399b401fe19f1eb3f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [12.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@12.23.2...@quenty/remoting@12.24.0) (2026-01-13)
7
18
 
8
19
  **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.24.0",
3
+ "version": "12.25.0",
4
4
  "description": "Global remoting retrieval system for Roblox (RemoteFunctions/RemoteEvents)",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,6 +31,7 @@
31
31
  "dependencies": {
32
32
  "@quenty/baseobject": "10.9.3",
33
33
  "@quenty/brio": "14.23.0",
34
+ "@quenty/enums": "1.1.0",
34
35
  "@quenty/instanceutils": "13.23.0",
35
36
  "@quenty/loader": "10.9.3",
36
37
  "@quenty/maid": "3.5.3",
@@ -43,5 +44,5 @@
43
44
  "publishConfig": {
44
45
  "access": "public"
45
46
  },
46
- "gitHead": "fbe4f7a70d781c1b2dd62ec19aec1ce6ce2d742c"
47
+ "gitHead": "8d2e7927e4399b4297a04d474d29bdd85692051d"
47
48
  }
@@ -5,16 +5,11 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local Table = require("Table")
8
+ local SimpleEnum = require("SimpleEnum")
9
9
 
10
10
  export type RemotingRealm = "server" | "client"
11
11
 
12
- export type RemotingRealms = {
13
- SERVER: "server",
14
- CLIENT: "client",
15
- }
16
-
17
- return Table.readonly({
18
- SERVER = "server",
19
- CLIENT = "client",
20
- } :: RemotingRealms)
12
+ return SimpleEnum.new({
13
+ SERVER = "server" :: "server",
14
+ CLIENT = "client" :: "client",
15
+ })