@quenty/roblox-api-dump 8.3.1 → 8.4.0-canary.478.211e09e.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 -5
- package/package.json +7 -7
- package/src/Server/RobloxApiMember.lua +1 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,9 @@
|
|
|
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
|
-
|
|
6
|
+
# [8.4.0-canary.478.211e09e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.3.0...@quenty/roblox-api-dump@8.4.0-canary.478.211e09e.0) (2024-08-27)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* Check permissions for new Capabilities and Sandboxed properties ([76a3e22](https://github.com/Quenty/NevermoreEngine/commit/76a3e227e8ea25e86d900f3e20be617eca35d5bd))
|
|
8
|
+
**Note:** Version bump only for package @quenty/roblox-api-dump
|
|
12
9
|
|
|
13
10
|
|
|
14
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/roblox-api-dump",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0-canary.478.211e09e.0",
|
|
4
4
|
"description": "Utility functions for grabbing the Roblox API from the web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/httppromise": "
|
|
31
|
-
"@quenty/loader": "
|
|
32
|
-
"@quenty/promise": "
|
|
33
|
-
"@quenty/table": "
|
|
29
|
+
"@quenty/baseobject": "10.4.0-canary.478.211e09e.0",
|
|
30
|
+
"@quenty/httppromise": "10.4.0-canary.478.211e09e.0",
|
|
31
|
+
"@quenty/loader": "10.4.0-canary.478.211e09e.0",
|
|
32
|
+
"@quenty/promise": "10.4.0-canary.478.211e09e.0",
|
|
33
|
+
"@quenty/table": "3.5.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "211e09ec811d87f8ad4596230f8ee53f81eb6eaa"
|
|
39
39
|
}
|
|
@@ -136,22 +136,6 @@ function RobloxApiMember:IsReadLocalUserSecurity()
|
|
|
136
136
|
return self:GetReadSecurity() == "LocalUserSecurity"
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
-
--[=[
|
|
140
|
-
Returns whether this member has read RobloxScriptSecurity
|
|
141
|
-
@return boolean
|
|
142
|
-
]=]
|
|
143
|
-
function RobloxApiMember:IsReadRobloxScriptSecurity()
|
|
144
|
-
return self:GetReadSecurity() == "RobloxScriptSecurity"
|
|
145
|
-
end
|
|
146
|
-
|
|
147
|
-
--[=[
|
|
148
|
-
Returns whether this member has write RobloxScriptSecurity
|
|
149
|
-
@return boolean
|
|
150
|
-
]=]
|
|
151
|
-
function RobloxApiMember:IsWriteRobloxScriptSecurity()
|
|
152
|
-
return self:GetWriteSecurity() == "RobloxScriptSecurity"
|
|
153
|
-
end
|
|
154
|
-
|
|
155
139
|
--[=[
|
|
156
140
|
Returns whether this can serialize save
|
|
157
141
|
@return boolean?
|
|
@@ -287,4 +271,4 @@ function RobloxApiMember:HasTag(tagName)
|
|
|
287
271
|
return self._tagCache[tagName] == true
|
|
288
272
|
end
|
|
289
273
|
|
|
290
|
-
return RobloxApiMember
|
|
274
|
+
return RobloxApiMember
|