@quenty/roblox-api-dump 8.4.0-canary.478.211e09e.0 → 8.4.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 +12 -1
- package/package.json +7 -7
- package/src/Server/RobloxApiMember.lua +17 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.4.0
|
|
6
|
+
# [8.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.3.1...@quenty/roblox-api-dump@8.4.0) (2024-09-12)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/roblox-api-dump
|
|
9
9
|
|
|
@@ -11,6 +11,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
## [8.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.3.0...@quenty/roblox-api-dump@8.3.1) (2024-08-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* Check permissions for new Capabilities and Sandboxed properties ([76a3e22](https://github.com/Quenty/NevermoreEngine/commit/76a3e227e8ea25e86d900f3e20be617eca35d5bd))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
14
25
|
# [8.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@8.2.0...@quenty/roblox-api-dump@8.3.0) (2024-05-09)
|
|
15
26
|
|
|
16
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/roblox-api-dump",
|
|
3
|
-
"version": "8.4.0
|
|
3
|
+
"version": "8.4.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": "10.4.0
|
|
30
|
-
"@quenty/httppromise": "10.4.0
|
|
31
|
-
"@quenty/loader": "10.4.0
|
|
32
|
-
"@quenty/promise": "10.4.0
|
|
33
|
-
"@quenty/table": "3.5.0"
|
|
29
|
+
"@quenty/baseobject": "^10.4.0",
|
|
30
|
+
"@quenty/httppromise": "^10.4.0",
|
|
31
|
+
"@quenty/loader": "^10.4.0",
|
|
32
|
+
"@quenty/promise": "^10.4.0",
|
|
33
|
+
"@quenty/table": "^3.5.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
|
|
39
39
|
}
|
|
@@ -136,6 +136,22 @@ 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
|
+
|
|
139
155
|
--[=[
|
|
140
156
|
Returns whether this can serialize save
|
|
141
157
|
@return boolean?
|
|
@@ -271,4 +287,4 @@ function RobloxApiMember:HasTag(tagName)
|
|
|
271
287
|
return self._tagCache[tagName] == true
|
|
272
288
|
end
|
|
273
289
|
|
|
274
|
-
return RobloxApiMember
|
|
290
|
+
return RobloxApiMember
|