@quenty/roblox-api-dump 8.12.0 → 8.12.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 +11 -0
- package/package.json +2 -2
- package/src/Server/RobloxApiMember.lua +8 -0
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
|
+
## [8.12.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.12.0...@quenty/roblox-api-dump@8.12.1) (2025-07-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Check for write RobloxSecurity (UniqueId property) ([198080b](https://github.com/Quenty/NevermoreEngine/commit/198080ba28a3beebab6ea245fd6d6243e1fe3138))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [8.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.11.4...@quenty/roblox-api-dump@8.12.0) (2025-05-10)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/roblox-api-dump",
|
|
3
|
-
"version": "8.12.
|
|
3
|
+
"version": "8.12.1",
|
|
4
4
|
"description": "Utility functions for grabbing the Roblox API from the web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "cbb37f5f451f359dad04243cb28dcb05291f0bb3"
|
|
39
39
|
}
|
|
@@ -161,6 +161,14 @@ function RobloxApiMember:IsWriteRobloxScriptSecurity(): boolean
|
|
|
161
161
|
return self:GetWriteSecurity() == "RobloxScriptSecurity"
|
|
162
162
|
end
|
|
163
163
|
|
|
164
|
+
--[=[
|
|
165
|
+
Returns whether this member has write RobloxSecurity
|
|
166
|
+
@return boolean
|
|
167
|
+
]=]
|
|
168
|
+
function RobloxApiMember:IsWriteRobloxSecurity(): boolean
|
|
169
|
+
return self:GetWriteSecurity() == "RobloxSecurity"
|
|
170
|
+
end
|
|
171
|
+
|
|
164
172
|
--[=[
|
|
165
173
|
Returns whether this can serialize save
|
|
166
174
|
@return boolean?
|