valenceai 0.5.0 → 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 +16 -0
- package/README.dev.md +1 -1
- package/README.md +358 -178
- package/package.json +15 -6
- package/src/config.js +25 -14
- package/src/rateLimit.js +77 -0
- package/src/streaming.js +193 -0
- package/src/utils/logger.js +3 -3
- package/src/valenceClient.js +173 -68
- package/tests/asyncAudio.test.js +128 -71
- package/tests/client.test.js +10 -25
- package/tests/config.test.js +21 -21
- package/tests/e2e.asyncWorkflow.test.js +343 -0
- package/tests/e2e.streaming.test.js +420 -0
- package/tests/logger.test.js +3 -0
- package/tests/rateLimit.test.js +137 -0
- package/tests/setup.js +5 -4
- package/tests/streaming.test.js +187 -0
- package/tests/valenceClient.test.js +50 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.1] - 2025-06-24
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Documentation Consistency**: Updated `README.dev.md` to use correct package name `valenceai` instead of outdated `valence-sdk-js`
|
|
12
|
+
- **Developer Experience**: Corrected installation instructions for publishing and development workflows
|
|
13
|
+
- **Package Alignment**: Ensured all development documentation reflects current package naming conventions
|
|
14
|
+
|
|
15
|
+
### Documentation
|
|
16
|
+
- **Developer Guidelines**: Updated publish and install commands with correct package names
|
|
17
|
+
- **Consistency**: Aligned development documentation with current v0.5.x package structure
|
|
18
|
+
- **Clarity**: Improved developer onboarding with accurate installation instructions
|
|
19
|
+
|
|
20
|
+
### Publishing
|
|
21
|
+
- **npm Commands**: Verified `npm publish --access public` workflow with correct package name
|
|
22
|
+
- **Installation**: Updated to `npm install valenceai` for consistency with published package
|
|
23
|
+
|
|
8
24
|
## [0.5.0] - 2025-06-23
|
|
9
25
|
|
|
10
26
|
### Added
|
package/README.dev.md
CHANGED