@quenty/avatareditorutils 7.8.0 → 7.9.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.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.8.0...@quenty/avatareditorutils@7.9.0) (2024-10-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add CatalogSearchServiceCache:PromiseInventoryPages(avatarAssetTypes) ([d7eba4b](https://github.com/Quenty/NevermoreEngine/commit/d7eba4bb08317ba8043ba1e29d68b2145a1852e0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [7.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.7.0...@quenty/avatareditorutils@7.8.0) (2024-09-25)
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.8.0",
3
+ "version": "7.9.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.7.0",
28
+ "@quenty/brio": "^14.8.0",
29
29
  "@quenty/enumutils": "^3.3.0",
30
- "@quenty/loader": "^10.5.0",
31
- "@quenty/maid": "^3.3.0",
32
- "@quenty/memoize": "^1.3.0",
33
- "@quenty/promise": "^10.5.0",
34
- "@quenty/rx": "^13.7.0",
35
- "@quenty/symbol": "^3.1.0"
30
+ "@quenty/loader": "^10.6.0",
31
+ "@quenty/maid": "^3.4.0",
32
+ "@quenty/memoize": "^1.4.0",
33
+ "@quenty/promise": "^10.6.0",
34
+ "@quenty/rx": "^13.8.0",
35
+ "@quenty/symbol": "^3.2.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "9b17fe79cddd071f0f06a9d35184e76b44bd6fe6"
40
+ "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
41
41
  }
@@ -18,6 +18,9 @@ function CatalogSearchServiceCache:Init(serviceBag)
18
18
  return AvatarEditorUtils.promiseSearchCatalog(params)
19
19
  end)
20
20
 
21
+ self._promiseInventoryPages = MemorizeUtils.memoize(function(avatarAssetTypes)
22
+ return AvatarEditorUtils.promiseInventoryPages(avatarAssetTypes)
23
+ end)
21
24
  end
22
25
 
23
26
 
@@ -25,5 +28,8 @@ function CatalogSearchServiceCache:PromiseSearchCatalog(params)
25
28
  return self._promiseSearchCatalog(params)
26
29
  end
27
30
 
31
+ function CatalogSearchServiceCache:PromiseInventoryPages(avatarAssetTypes)
32
+ return self._promiseInventoryPages(avatarAssetTypes)
33
+ end
28
34
 
29
35
  return CatalogSearchServiceCache