@wealthfolio/addon-sdk 1.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 +32 -0
- package/LICENSE +21 -0
- package/README.md +1683 -0
- package/dist/chunk-3OBZP7TN.mjs +238 -0
- package/dist/chunk-3OBZP7TN.mjs.map +1 -0
- package/dist/index.d.mts +279 -0
- package/dist/index.mjs +234 -0
- package/dist/index.mjs.map +1 -0
- package/dist/permissions.d.mts +99 -0
- package/dist/permissions.mjs +29 -0
- package/dist/permissions.mjs.map +1 -0
- package/dist/types-CxtChQdm.d.mts +1137 -0
- package/dist/types.d.mts +2 -0
- package/dist/types.mjs +1 -0
- package/dist/types.mjs.map +1 -0
- package/package.json +63 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
## [1.0.0] - 2024-12-19
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- **Initial Release** - Complete TypeScript SDK for building Wealthfolio addons
|
|
10
|
+
- **Core Types**: AddonContext, SidebarManager, RouterManager, and event handling
|
|
11
|
+
- **Data Types**: Comprehensive financial data models (Account, Activity, Asset, Holding, etc.)
|
|
12
|
+
- **Permission System**: Risk-based permission categorization with validation and security controls
|
|
13
|
+
- **Manifest Management**: Validation, compatibility checks, and metadata handling
|
|
14
|
+
- **Host API Interface**: Secure communication layer between addons and Wealthfolio
|
|
15
|
+
- **Utility Functions**: Addon validation, version compatibility, ID generation, and size formatting
|
|
16
|
+
- **Development Tools**: Complete TypeScript definitions and development utilities
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
- Enhanced type safety with complete data type definitions
|
|
20
|
+
- Permission system with risk-based categorization (low, medium, high)
|
|
21
|
+
- Addon lifecycle management (install, validate, update, enable/disable)
|
|
22
|
+
- Development and runtime manifest types
|
|
23
|
+
- Comprehensive export definitions for all addon functionality
|
|
24
|
+
- Support for addon store listings and metadata
|
|
25
|
+
|
|
26
|
+
### Technical
|
|
27
|
+
- ESM module format with TypeScript declarations
|
|
28
|
+
- React peer dependency support (^18.0.0)
|
|
29
|
+
- Node.js 20+ compatibility
|
|
30
|
+
- MIT licensed for maximum compatibility
|
|
31
|
+
- Complete build pipeline with tsup
|
|
32
|
+
- Comprehensive type exports and module structure
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Wealthfolio Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|