@sonarwatch/portfolio-core 0.16.114 → 0.16.115
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 +9 -0
- package/package.json +1 -1
- package/src/Portfolio.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.16.115](https://github.com/sonarwatch/portfolio/compare/core-0.16.114...core-0.16.115) (2026-02-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **core:** clarify `lockedUntil` comment with example ([27be42b](https://github.com/sonarwatch/portfolio/commit/27be42bb78383099aed1025781263537b10dea04))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## [0.16.114](https://github.com/sonarwatch/portfolio/compare/core-0.16.113...core-0.16.114) (2026-02-09)
|
|
6
15
|
|
|
7
16
|
|
package/package.json
CHANGED
package/src/Portfolio.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export type PortfolioAssetAttributes = {
|
|
|
18
18
|
/**
|
|
19
19
|
* Represents the date (in ms) when the asset will be unlocked.
|
|
20
20
|
* If current date is greater than this value, the asset is unlocked.
|
|
21
|
-
* If set to -1, it means it's locked for an unknown or indeterminate period
|
|
21
|
+
* If set to -1, it means it's locked for an unknown or indeterminate period (e.g. pending withdrawal with a delay)
|
|
22
22
|
*/
|
|
23
23
|
lockedUntil?: number;
|
|
24
24
|
/**
|