@revenium/anthropic 1.0.3 → 1.0.5

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 ADDED
@@ -0,0 +1,60 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.0.5] - 2025-10-23
6
+
7
+ ### Changed
8
+ - Updated .gitignore to GitHub official standard for professional presentation
9
+ - Improved .env.example with realistic key format examples (hak_, sk-ant-)
10
+ - Created initial public repository structure
11
+
12
+ ## [1.0.4] - 2025-10-21
13
+
14
+ ### Changed
15
+ - Simplified README documentation and consolidated examples
16
+ - Updated documentation links to use GitHub HEAD references
17
+ - Enhanced .gitignore setup instructions with industry-standard reference
18
+
19
+ ## [1.0.3] - 2025-10-17
20
+
21
+ ### Changed
22
+ - Updated publishing documentation with validated release workflow
23
+
24
+ ## [1.0.2] - 2025-10-16
25
+
26
+ ### Changed
27
+ - Package maintenance and stability improvements
28
+
29
+ ## [1.0.1] - 2025-10-15
30
+
31
+ ### Changed
32
+ - Updated all package name references from `revenium-middleware-anthropic-node` to `@revenium/anthropic` throughout documentation
33
+ - Removed emojis from all documentation and examples for professional presentation
34
+ - Updated repository references to point to public repository
35
+ - Updated DEVELOPMENT.md with correct package installation instructions
36
+ - Updated PUBLISHING.md with correct npm package commands
37
+
38
+ ## [1.0.0] - 2025-10-14
39
+
40
+ ### Added
41
+ - Transparent middleware for Anthropic Claude usage tracking
42
+ - Automatic metadata integration with native TypeScript support
43
+ - Streaming support for real-time responses
44
+ - Fire-and-forget tracking (non-blocking)
45
+ - Comprehensive analytics tracking (users, organizations, custom business data)
46
+ - Tool use support (function calling)
47
+ - Multi-modal support (text, images, etc.)
48
+ - Dual package exports (CJS + ESM) support
49
+ - Enhanced TypeScript definitions and JSDoc documentation
50
+ - Full TypeScript and JavaScript support
51
+ - Circuit breaker pattern for reliability
52
+ - Configurable retry logic
53
+ - Debug logging support
54
+
55
+ [1.0.5]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.5
56
+ [1.0.4]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.4
57
+ [1.0.3]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.3
58
+ [1.0.2]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.2
59
+ [1.0.1]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.1
60
+ [1.0.0]: https://github.com/revenium/revenium-middleware-anthropic-node/releases/tag/v1.0.0
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Revenium, Inc.
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
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Revenium, Inc.
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
21
  SOFTWARE.