@quenty/roblox-api-dump 8.22.2 → 8.24.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,16 @@
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
+ # [8.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.23.0...@quenty/roblox-api-dump@8.24.0) (2026-07-18)
7
+
8
+ ### Bug Fixes
9
+
10
+ - pin translation behavior with tests and fix camelCase key generation ([#737](https://github.com/Quenty/NevermoreEngine/issues/737)) ([1b7a536](https://github.com/Quenty/NevermoreEngine/commit/1b7a536dde7e124f8432e57612ec8138dd835d75))
11
+
12
+ # [8.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.22.2...@quenty/roblox-api-dump@8.23.0) (2026-07-18)
13
+
14
+ **Note:** Version bump only for package @quenty/roblox-api-dump
15
+
6
16
  ## [8.22.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.22.1...@quenty/roblox-api-dump@8.22.2) (2026-07-15)
7
17
 
8
18
  **Note:** Version bump only for package @quenty/roblox-api-dump
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/roblox-api-dump",
3
- "version": "8.22.2",
3
+ "version": "8.24.0",
4
4
  "description": "Utility functions for grabbing the Roblox API from the web",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,20 +29,20 @@
29
29
  "Quenty"
30
30
  ],
31
31
  "dependencies": {
32
- "@quenty/baseobject": "10.13.0",
33
- "@quenty/httppromise": "10.18.1",
32
+ "@quenty/baseobject": "10.14.0",
33
+ "@quenty/httppromise": "10.20.0",
34
34
  "@quenty/loader": "10.11.0",
35
- "@quenty/maid": "3.9.0",
35
+ "@quenty/maid": "3.10.0",
36
36
  "@quenty/nevermore-test-runner": "1.4.0",
37
- "@quenty/promise": "10.18.1",
38
- "@quenty/remoting": "12.32.2",
39
- "@quenty/servicebag": "11.18.1",
37
+ "@quenty/promise": "10.20.0",
38
+ "@quenty/remoting": "12.34.0",
39
+ "@quenty/servicebag": "11.19.0",
40
40
  "@quenty/table": "3.9.2",
41
- "@quenty/valueobject": "13.31.1",
41
+ "@quenty/valueobject": "13.33.0",
42
42
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "f04f5232cc377b69745bc87176e0b4d80d1fbc2b"
47
+ "gitHead": "647acfad93dca41c38f59cda247d2bfc0fff36d4"
48
48
  }
@@ -1,14 +1,14 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[[
3
3
  @class RobloxApiDump.spec.lua
4
4
  ]]
5
5
 
6
- local require = (require :: any)(
7
- game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
- ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
6
+ local require = require(script.Parent.loader).load(script)
9
7
 
10
8
  local Jest = require("Jest")
9
+ local RobloxApiClass = require("RobloxApiClass")
11
10
  local RobloxApiDump = require("RobloxApiDump")
11
+ local RobloxApiMember = require("RobloxApiMember")
12
12
  local RobloxApiUtils = require("RobloxApiUtils")
13
13
 
14
14
  local afterAll = Jest.Globals.afterAll
@@ -110,9 +110,9 @@ describe("RobloxApiDump", function()
110
110
  end)
111
111
 
112
112
  describe("RobloxApiClass", function()
113
- local partClass
114
- local instanceClass
115
- local workspaceClass
113
+ local partClass: RobloxApiClass.RobloxApiClass
114
+ local instanceClass: RobloxApiClass.RobloxApiClass
115
+ local workspaceClass: RobloxApiClass.RobloxApiClass
116
116
 
117
117
  beforeAll(function()
118
118
  partClass = dump:PromiseClass("Part"):Wait()
@@ -185,7 +185,7 @@ describe("RobloxApiClass", function()
185
185
 
186
186
  describe("PromiseProperties / PromiseEvents / PromiseFunctions", function()
187
187
  it("should filter to only properties", function()
188
- local props = instanceClass:PromiseProperties():Wait()
188
+ local props: { RobloxApiMember.RobloxApiMember } = instanceClass:PromiseProperties():Wait()
189
189
  expect(#props > 0).toEqual(true)
190
190
  for _, prop in props do
191
191
  expect(prop:IsProperty()).toEqual(true)
@@ -193,7 +193,7 @@ describe("RobloxApiClass", function()
193
193
  end)
194
194
 
195
195
  it("should filter to only events", function()
196
- local events = instanceClass:PromiseEvents():Wait()
196
+ local events: { RobloxApiMember.RobloxApiMember } = instanceClass:PromiseEvents():Wait()
197
197
  expect(#events > 0).toEqual(true)
198
198
  for _, event in events do
199
199
  expect(event:IsEvent()).toEqual(true)
@@ -201,7 +201,7 @@ describe("RobloxApiClass", function()
201
201
  end)
202
202
 
203
203
  it("should filter to only functions", function()
204
- local funcs = instanceClass:PromiseFunctions():Wait()
204
+ local funcs: { RobloxApiMember.RobloxApiMember } = instanceClass:PromiseFunctions():Wait()
205
205
  expect(#funcs > 0).toEqual(true)
206
206
  for _, func in funcs do
207
207
  expect(func:IsFunction()).toEqual(true)