@revenium/perplexity 2.0.2 → 2.0.3

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
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [2.0.3] - 2025-10-21
9
+
10
+ ### Changed
11
+ - Enhanced package.json with examples in files array
12
+ - Added community health files (CODE_OF_CONDUCT.md, CONTRIBUTING.md, SECURITY.md)
13
+ - Updated .gitignore with security report patterns (including package-lock.json)
14
+ - Added CHANGELOG.md for version tracking
15
+ - Added engines field for Node.js version requirements
16
+
17
+ ## [2.0.2] - 2025-10-17
18
+
19
+ ### Changed
20
+ - Documentation improvements with absolute path references
21
+
22
+ ## [2.0.1] - 2025-10-09
23
+
24
+ ### Changed
25
+ - Internal updates and improvements
26
+
27
+ ## [2.0.0] - 2025-10-09
28
+
29
+ ### Added
30
+ - Complete code restructuring with core/ directory organization
31
+ - Dual package exports (ESM + CommonJS) support
32
+ - TypeScript declaration maps for better debugging
33
+ - Enhanced build system with separate CJS, ESM, and types builds
34
+ - New examples structure (basic.ts, chat.ts, streaming.ts, metadata.ts)
35
+ - Playground examples for JavaScript users
36
+
37
+ ### Changed
38
+ - Restructured src/ directory with core/config, core/tracking, core/wrapper
39
+ - Updated examples to use new structure
40
+ - Enhanced README with comprehensive documentation
41
+
42
+ ## [1.0.0] - 2025-09-23
43
+
44
+ ### Added
45
+ - Initial release of Perplexity AI middleware
46
+ - Automatic token counting and usage tracking
47
+ - Support for all Perplexity models
48
+ - Streaming support with automatic tracking
49
+ - Custom metadata integration
50
+ - TypeScript support with full type safety
51
+ - Multiple client options
52
+ - Comprehensive error handling
53
+ - Background processing for non-blocking tracking
54
+ - Debug logging support
55
+
56
+ [2.0.3]: https://github.com/revenium/revenium-middleware-perplexity-node/releases/tag/v2.0.3
57
+ [2.0.2]: https://github.com/revenium/revenium-middleware-perplexity-node/releases/tag/v2.0.2
58
+ [2.0.1]: https://github.com/revenium/revenium-middleware-perplexity-node/releases/tag/v2.0.1
59
+ [2.0.0]: https://github.com/revenium/revenium-middleware-perplexity-node/releases/tag/v2.0.0
60
+ [1.0.0]: https://github.com/revenium/revenium-middleware-perplexity-node/releases/tag/v1.0.0
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Revenium
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.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Revenium
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.