@quenty/avatareditorutils 7.12.1 → 7.13.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,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
+ # [7.13.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.12.1...@quenty/avatareditorutils@7.13.0) (2024-11-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * Promise avatar rules properly ([66a3833](https://github.com/Quenty/NevermoreEngine/commit/66a38333ffcf2af788ae7356b8e1fb4169114556))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.12.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.12.0...@quenty/avatareditorutils@7.12.1) (2024-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": "7.12.1",
3
+ "version": "7.13.0",
4
4
  "description": "Provides utility functions to work with the Roblox AvatarEditorService",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,17 +25,17 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^14.11.1",
28
+ "@quenty/brio": "^14.12.0",
29
29
  "@quenty/enumutils": "^3.3.0",
30
30
  "@quenty/loader": "^10.7.1",
31
31
  "@quenty/maid": "^3.4.0",
32
32
  "@quenty/memoize": "^1.5.1",
33
- "@quenty/promise": "^10.7.1",
34
- "@quenty/rx": "^13.11.1",
35
- "@quenty/symbol": "^3.2.0"
33
+ "@quenty/promise": "^10.8.0",
34
+ "@quenty/rx": "^13.12.0",
35
+ "@quenty/symbol": "^3.3.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "01c43a0ddd3c5e0cb2d9027313dbfa9852eedef1"
40
+ "gitHead": "00e6f71716216dd6ecbc8505ad898a1ab7f72756"
41
41
  }
@@ -23,6 +23,14 @@ function CatalogSearchServiceCache:Init(serviceBag)
23
23
  end)
24
24
  end
25
25
 
26
+ function CatalogSearchServiceCache:PromiseAvatarRules()
27
+ if self._avatarRulesPromise then
28
+ return self._avatarRulesPromise
29
+ end
30
+
31
+ self._avatarRulesPromise = AvatarEditorUtils.promiseAvatarRules()
32
+ return self._avatarRulesPromise
33
+ end
26
34
 
27
35
  function CatalogSearchServiceCache:PromiseSearchCatalog(params)
28
36
  return self._promiseSearchCatalog(params)