@quenty/receiptprocessing 7.5.0 → 7.6.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.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/receiptprocessing@7.5.0...@quenty/receiptprocessing@7.6.0) (2024-09-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * Unedited all changes ([60e64e3](https://github.com/Quenty/NevermoreEngine/commit/60e64e3efce17c10c4b8965871187d231b338dd4))
12
+
13
+
14
+
15
+
16
+
6
17
  # [7.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/receiptprocessing@7.4.0...@quenty/receiptprocessing@7.5.0) (2024-08-09)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/receiptprocessing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/receiptprocessing",
3
- "version": "7.5.0",
3
+ "version": "7.6.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.2.0",
29
- "@quenty/loader": "^10.3.0",
30
- "@quenty/maid": "^3.2.0",
31
- "@quenty/promise": "^10.3.0",
32
- "@quenty/rx": "^13.4.0",
33
- "@quenty/servicebag": "^11.4.0",
34
- "@quenty/signal": "^7.3.0",
35
- "@quenty/valueobject": "^13.4.0"
29
+ "@quenty/loader": "^10.4.0",
30
+ "@quenty/maid": "^3.3.0",
31
+ "@quenty/promise": "^10.4.0",
32
+ "@quenty/rx": "^13.5.0",
33
+ "@quenty/servicebag": "^11.5.0",
34
+ "@quenty/signal": "^7.4.0",
35
+ "@quenty/valueobject": "^13.5.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ba466bdbc05c42fb607cf5e228c16339201d21d7"
40
+ "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
41
41
  }
@@ -38,9 +38,6 @@ function ReceiptProcessingService:Start()
38
38
  MarketplaceService.ProcessReceipt = function(...)
39
39
  return self:_handleProcessReceiptAsync(...)
40
40
  end
41
- else
42
- -- Note: we're probably in test mode and initialized on the client
43
- warn("[ReceiptProcessingService] - Failed to bind process receipt")
44
41
  end
45
42
  end
46
43