@mmmbuto/zai-codex-bridge 0.1.1 → 0.1.2

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/package.json +1 -1
  2. package/src/server.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmmbuto/zai-codex-bridge",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local proxy that translates OpenAI Responses API format to Z.AI Chat Completions format for Codex",
5
5
  "main": "src/server.js",
6
6
  "bin": {
package/src/server.js CHANGED
@@ -188,8 +188,10 @@ async function makeUpstreamRequest(path, body, headers) {
188
188
  'Authorization': headers['authorization'] || headers['Authorization'] || ''
189
189
  };
190
190
 
191
- log('debug', 'Upstream request:', {
191
+ log('info', 'Upstream request:', {
192
192
  url: url.href,
193
+ path: path,
194
+ base: ZAI_BASE_URL,
193
195
  hasAuth: !!upstreamHeaders.Authorization
194
196
  });
195
197