@output.ai/http 0.0.2 → 0.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.
Files changed (2) hide show
  1. package/dist/config.js +1 -1
  2. package/package.json +1 -1
package/dist/config.js CHANGED
@@ -6,5 +6,5 @@ export const config = {
6
6
  * Whether to log verbose HTTP information (headers and bodies)
7
7
  * Controlled by LOG_HTTP_VERBOSE environment variable
8
8
  */
9
- logVerbose: ['1', 'true'].includes(process.env.TRACING_HTTP_VERBOSE)
9
+ logVerbose: ['1', 'true'].includes(process.env.LOG_HTTP_VERBOSE)
10
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@output.ai/http",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Framework abstraction to make HTTP calls with tracing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",