ai-l10n-sdk 1.5.0 → 1.5.1
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 +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to the SDK package 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
|
+
## [1.5.1] - 2026-04-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated to use `ai-l10n-core@1.5.1`
|
|
12
|
+
- Set default client identifier on `translate()` requests.
|
|
13
|
+
- Standardized the `reason` type used in API error responses to a fixed union of values.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- API documentation
|
|
17
|
+
|
|
8
18
|
## [1.5.0] - 2026-04-16
|
|
9
19
|
|
|
10
20
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-l10n-sdk",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Lightweight SDK for AI-powered localization automation - programmatic API (no CLI)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"node": ">=14.0.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"ai-l10n-core": "^1.5.
|
|
49
|
+
"ai-l10n-core": "^1.5.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/mocha": "^10.0.10",
|