@wealthfolio/addon-sdk 1.0.0 → 3.0.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 +19 -8
- package/README.md +226 -146
- package/dist/{chunk-3OBZP7TN.mjs → chunk-6MGUTH7T.js} +10 -40
- package/dist/chunk-6MGUTH7T.js.map +1 -0
- package/dist/{index.mjs → index.js} +70 -23
- package/dist/index.js.map +1 -0
- package/dist/{permissions.mjs → permissions.js} +2 -2
- package/dist/src/data-types.d.ts +713 -0
- package/dist/src/goal-progress.d.ts +7 -0
- package/dist/src/host-api.d.ts +566 -0
- package/dist/src/index.d.ts +29 -0
- package/dist/src/manifest.d.ts +176 -0
- package/dist/{permissions.d.mts → src/permissions.d.ts} +16 -18
- package/dist/src/query-keys.d.ts +44 -0
- package/dist/src/types.d.ts +88 -0
- package/dist/src/utils.d.ts +24 -0
- package/dist/src/version.d.ts +4 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types.js +1 -0
- package/package.json +28 -17
- package/dist/chunk-3OBZP7TN.mjs.map +0 -1
- package/dist/index.d.mts +0 -279
- package/dist/index.mjs.map +0 -1
- package/dist/types-CxtChQdm.d.mts +0 -1137
- package/dist/types.d.mts +0 -2
- package/dist/types.mjs +0 -1
- /package/dist/{permissions.mjs.map → permissions.js.map} +0 -0
- /package/dist/{types.mjs.map → types.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
|
-
and this project adheres to
|
|
4
|
+
and this project adheres to
|
|
5
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
6
|
|
|
6
7
|
## [1.0.0] - 2024-12-19
|
|
7
8
|
|
|
8
9
|
### Added
|
|
10
|
+
|
|
9
11
|
- **Initial Release** - Complete TypeScript SDK for building Wealthfolio addons
|
|
10
|
-
- **Core Types**: AddonContext, SidebarManager, RouterManager, and event
|
|
11
|
-
|
|
12
|
-
- **
|
|
13
|
-
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
- **
|
|
12
|
+
- **Core Types**: AddonContext, SidebarManager, RouterManager, and event
|
|
13
|
+
handling
|
|
14
|
+
- **Data Types**: Comprehensive financial data models (Account, Activity, Asset,
|
|
15
|
+
Holding, etc.)
|
|
16
|
+
- **Permission System**: Risk-based permission categorization with validation
|
|
17
|
+
and security controls
|
|
18
|
+
- **Manifest Management**: Validation, compatibility checks, and metadata
|
|
19
|
+
handling
|
|
20
|
+
- **Host API Interface**: Secure communication layer between addons and
|
|
21
|
+
Wealthfolio
|
|
22
|
+
- **Utility Functions**: Addon validation, version compatibility, ID generation,
|
|
23
|
+
and size formatting
|
|
24
|
+
- **Development Tools**: Complete TypeScript definitions and development
|
|
25
|
+
utilities
|
|
17
26
|
|
|
18
27
|
### Features
|
|
28
|
+
|
|
19
29
|
- Enhanced type safety with complete data type definitions
|
|
20
30
|
- Permission system with risk-based categorization (low, medium, high)
|
|
21
31
|
- Addon lifecycle management (install, validate, update, enable/disable)
|
|
@@ -24,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
34
|
- Support for addon store listings and metadata
|
|
25
35
|
|
|
26
36
|
### Technical
|
|
37
|
+
|
|
27
38
|
- ESM module format with TypeScript declarations
|
|
28
39
|
- React peer dependency support (^18.0.0)
|
|
29
40
|
- Node.js 20+ compatibility
|