@quenty/receiptprocessing 7.18.4-canary.559.9f38947.0 → 7.19.0-canary.0a5db80.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,25 +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
|
-
|
|
6
|
+
# [7.19.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/receiptprocessing@7.18.2...@quenty/receiptprocessing@7.19.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
### Features
|
|
15
15
|
|
|
16
|
-
* Add even more types ([
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [7.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/receiptprocessing@7.18.2...@quenty/receiptprocessing@7.18.3) (2025-04-10)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @quenty/receiptprocessing
|
|
16
|
+
* Add even more types ([0a5db80](https://github.com/Quenty/NevermoreEngine/commit/0a5db8004684dc3e76fd5944599a22602d48cfa9))
|
|
25
17
|
|
|
26
18
|
|
|
27
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/receiptprocessing",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.0-canary.0a5db80.0",
|
|
4
4
|
"description": "Centralize receipt processing within games since this is a constrained resource.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/enumutils": "3.4.2",
|
|
29
|
-
"@quenty/loader": "10.
|
|
30
|
-
"@quenty/maid": "3.
|
|
31
|
-
"@quenty/promise": "10.
|
|
32
|
-
"@quenty/rx": "13.
|
|
33
|
-
"@quenty/servicebag": "11.
|
|
34
|
-
"@quenty/signal": "7.
|
|
35
|
-
"@quenty/valueobject": "13.
|
|
29
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/promise": "10.11.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/servicebag": "11.12.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/signal": "7.11.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
41
41
|
}
|
|
@@ -12,12 +12,12 @@ local RunService = game:GetService("RunService")
|
|
|
12
12
|
|
|
13
13
|
local EnumUtils = require("EnumUtils")
|
|
14
14
|
local Maid = require("Maid")
|
|
15
|
-
local Observable = require("Observable")
|
|
16
15
|
local ObservableSubscriptionTable = require("ObservableSubscriptionTable")
|
|
17
16
|
local Promise = require("Promise")
|
|
18
|
-
local ServiceBag = require("ServiceBag")
|
|
19
17
|
local Signal = require("Signal")
|
|
20
18
|
local ValueObject = require("ValueObject")
|
|
19
|
+
local ServiceBag = require("ServiceBag")
|
|
20
|
+
local Observable = require("Observable")
|
|
21
21
|
|
|
22
22
|
export type ReceiptInfo = {
|
|
23
23
|
PurchaseId: number,
|
|
@@ -181,10 +181,7 @@ function ReceiptProcessingService:_handleProcessReceiptAsync(receiptInfo: Receip
|
|
|
181
181
|
return self._defaultDecision.Value
|
|
182
182
|
end
|
|
183
183
|
|
|
184
|
-
function ReceiptProcessingService:_fireProcessed(
|
|
185
|
-
receiptInfo: ReceiptInfo,
|
|
186
|
-
productPurchaseDecision: Enum.ProductPurchaseDecision
|
|
187
|
-
)
|
|
184
|
+
function ReceiptProcessingService:_fireProcessed(receiptInfo: ReceiptInfo, productPurchaseDecision: Enum.ProductPurchaseDecision)
|
|
188
185
|
assert(EnumUtils.isOfType(Enum.ProductPurchaseDecision, productPurchaseDecision), "Bad productPurchaseDecision")
|
|
189
186
|
|
|
190
187
|
self.ReceiptProcessed:Fire(receiptInfo, productPurchaseDecision)
|