web-manager 4.1.15 → 4.1.17
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 +8 -0
- package/dist/modules/auth.js +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
---
|
|
18
|
+
## [4.1.15] - 2026-02-26
|
|
19
|
+
### Fixed
|
|
20
|
+
- Fixed bindings skeleton removal happening prematurely when partial context updates didn't match any of the element's bindings.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- `_executeAction` now returns a boolean indicating whether the action was processed, allowing `update()` to defer skeleton removal until at least one binding runs.
|
|
24
|
+
|
|
17
25
|
---
|
|
18
26
|
## [4.1.10] - 2026-02-17
|
|
19
27
|
### Changed
|
package/dist/modules/auth.js
CHANGED
|
@@ -22,11 +22,13 @@ const DEFAULT_ACCOUNT = {
|
|
|
22
22
|
roles: { admin: false, betaTester: false, developer: false },
|
|
23
23
|
affiliate: { code: null, referrals: [] },
|
|
24
24
|
activity: {
|
|
25
|
-
|
|
25
|
+
},
|
|
26
|
+
metadata: {
|
|
26
27
|
created: { timestamp: null, timestampUNIX: null },
|
|
28
|
+
updated: { timestamp: null, timestampUNIX: null },
|
|
27
29
|
},
|
|
28
30
|
api: { clientId: null, privateKey: null },
|
|
29
|
-
usage: {
|
|
31
|
+
usage: {},
|
|
30
32
|
personal: { name: { first: null, last: null } },
|
|
31
33
|
oauth2: {},
|
|
32
34
|
attribution: {
|
package/package.json
CHANGED