@quenty/datastore 7.25.2 → 7.26.0-canary.412.249f109.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,14 @@
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.26.0-canary.412.249f109.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@7.25.2...@quenty/datastore@7.26.0-canary.412.249f109.0) (2023-09-21)
7
+
8
+ **Note:** Version bump only for package @quenty/datastore
9
+
10
+
11
+
12
+
13
+
6
14
  ## [7.25.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@7.25.1...@quenty/datastore@7.25.2) (2023-09-19)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/datastore",
3
- "version": "7.25.2",
3
+ "version": "7.26.0-canary.412.249f109.0",
4
4
  "description": "Quenty's Datastore implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,21 +26,21 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "^6.3.0",
30
- "@quenty/bindtocloseservice": "^2.20.0",
31
- "@quenty/loader": "^6.3.0",
32
- "@quenty/maid": "^2.6.0",
33
- "@quenty/math": "^2.5.0",
34
- "@quenty/promise": "^6.8.0",
35
- "@quenty/rx": "^7.15.0",
36
- "@quenty/servicebag": "^6.9.0",
37
- "@quenty/signal": "^2.4.0",
38
- "@quenty/symbol": "^2.2.0",
39
- "@quenty/table": "^3.3.0",
40
- "@quenty/valueobject": "^7.23.0"
29
+ "@quenty/baseobject": "6.3.0",
30
+ "@quenty/bindtocloseservice": "2.21.0-canary.412.249f109.0",
31
+ "@quenty/loader": "6.3.0",
32
+ "@quenty/maid": "2.6.0",
33
+ "@quenty/math": "2.5.0",
34
+ "@quenty/promise": "6.8.0",
35
+ "@quenty/rx": "7.16.0-canary.412.249f109.0",
36
+ "@quenty/servicebag": "6.9.0",
37
+ "@quenty/signal": "2.4.0",
38
+ "@quenty/symbol": "2.2.0",
39
+ "@quenty/table": "3.3.0",
40
+ "@quenty/valueobject": "7.24.0-canary.412.249f109.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "c121b834f8241055d80d66d35be65f648babecdb"
45
+ "gitHead": "249f109836c54ca992ac1b2f4dbf850c6cac3b19"
46
46
  }
@@ -102,17 +102,10 @@ function DataStore.new(robloxDataStore, key)
102
102
  self._robloxDataStore = robloxDataStore or error("No robloxDataStore")
103
103
  self._debugWriting = DEFAULT_DEBUG_WRITING
104
104
 
105
- self._autoSaveTimeSeconds = ValueObject.new(DEFAULT_AUTO_SAVE_TIME_SECONDS)
106
- self._maid:GiveTask(self._autoSaveTimeSeconds)
107
-
108
- self._jitterProportion = ValueObject.new(DEFAULT_JITTER_PROPORTION, "number")
109
- self._maid:GiveTask(self._jitterProportion)
110
-
111
- self._syncOnSave = ValueObject.new(false, "boolean")
112
- self._maid:GiveTask(self._syncOnSave)
113
-
114
- self._loadedOk = ValueObject.new(false, "boolean")
115
- self._maid:GiveTask(self._loadedOk)
105
+ self._autoSaveTimeSeconds = self._maid:Add(ValueObject.new(DEFAULT_AUTO_SAVE_TIME_SECONDS))
106
+ self._jitterProportion = self._maid:Add(ValueObject.new(DEFAULT_JITTER_PROPORTION, "number"))
107
+ self._syncOnSave = self._maid:Add(ValueObject.new(false, "boolean"))
108
+ self._loadedOk = self._maid:Add(ValueObject.new(false, "boolean"))
116
109
 
117
110
  self._userIdList = nil
118
111