@quenty/gameproductservice 7.0.1 → 7.0.2
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.0.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameproductservice@7.0.1...@quenty/gameproductservice@7.0.2) (2023-04-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix dependencies and ownership promise ([4f44f2f](https://github.com/Quenty/NevermoreEngine/commit/4f44f2fbdb1bff0a0552c8f2e1562350ecd443cf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [7.0.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameproductservice@7.0.0...@quenty/gameproductservice@7.0.1) (2023-04-07)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/gameproductservice
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/gameproductservice",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Generalized monetization system for handling products and purchases correctly.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"@quenty/signal": "^2.3.0",
|
|
45
45
|
"@quenty/statestack": "^8.11.1",
|
|
46
46
|
"@quenty/string": "^3.1.0",
|
|
47
|
-
"@quenty/table": "^3.2.0"
|
|
47
|
+
"@quenty/table": "^3.2.0",
|
|
48
|
+
"@quenty/valueobject": "^7.11.1"
|
|
48
49
|
},
|
|
49
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "c30c56b04faeb88e83c66d5f90f5abd32abfcd95"
|
|
50
51
|
}
|
|
@@ -101,6 +101,8 @@ function PlayerAssetOwnershipTracker:_promiseQueryIdOrKeyOwnershipCached(idOrKey
|
|
|
101
101
|
local promise = promiseOwnershipCallback(id)
|
|
102
102
|
assert(Promise.isPromise(promise), "Expected promise from callack")
|
|
103
103
|
|
|
104
|
+
promise = self._maid:GivePromise(promise)
|
|
105
|
+
|
|
104
106
|
promise:Then(function(ownsItem)
|
|
105
107
|
self._assetOwnershipPromiseCache[id] = ownsItem
|
|
106
108
|
|