@quenty/avatareditorutils 1.1.1 → 1.2.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 +11 -0
- package/package.json +4 -2
- package/src/Client/AvatarEditorUtils.lua +5 -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
|
+
# [1.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@1.1.1...@quenty/avatareditorutils@1.2.0) (2022-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix avatar editor dependencies (missing promise and enumutils) ([1bc2ca8](https://github.com/Quenty/NevermoreEngine/commit/1bc2ca8e99cc5775222263a7ae06c96604ac1aba))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@1.1.0...@quenty/avatareditorutils@1.1.1) (2022-11-04)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/avatareditorutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/avatareditorutils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Provides utility functions to work with the Roblox AvatarEditorService",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,13 +26,15 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/brio": "^8.1.1",
|
|
29
|
+
"@quenty/enumutils": "^3.0.0",
|
|
29
30
|
"@quenty/loader": "^6.0.1",
|
|
30
31
|
"@quenty/maid": "^2.4.0",
|
|
32
|
+
"@quenty/promise": "^6.0.1",
|
|
31
33
|
"@quenty/rx": "^7.1.1",
|
|
32
34
|
"@quenty/symbol": "^2.1.0"
|
|
33
35
|
},
|
|
34
36
|
"publishConfig": {
|
|
35
37
|
"access": "public"
|
|
36
38
|
},
|
|
37
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "2114f42ae399a4417a3ebd4d35bf481690ca7923"
|
|
38
40
|
}
|
|
@@ -354,6 +354,11 @@ end
|
|
|
354
354
|
|
|
355
355
|
https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetRecommendedAssets
|
|
356
356
|
|
|
357
|
+
:::warning
|
|
358
|
+
This API surface currently returns "AvatarEditorService is not yet enabled" when queried outside
|
|
359
|
+
of approved games.
|
|
360
|
+
:::
|
|
361
|
+
|
|
357
362
|
@param assetType AvatarAssetType
|
|
358
363
|
@param contextAssetId number? -- Optional. if not provided just gives recommendations in general
|
|
359
364
|
@return Promise<{ number }>
|